We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1de2604 commit a8bfd0aCopy full SHA for a8bfd0a
.github/workflows/go.yml
@@ -27,6 +27,15 @@ jobs:
27
- name: Test
28
run: go test -v ./...
29
30
+ - name: Coverage
31
+ run: go test -coverprofile=coverage.txt
32
+
33
+ - name: "Upload coverage reports to Codecov"
34
+ uses: codecov/codecov-action@v5
35
+ with:
36
+ token: 4ef16850-a806-4e2d-9f53-b00829214503
37
+ slug: VarusHsu/excelorm
38
39
lint:
40
runs-on: ubuntu-latest
41
steps:
@@ -42,4 +51,5 @@ jobs:
42
51
uses: golangci/golangci-lint-action@v6
43
52
with:
44
53
version: v1.61.0
45
- args: --verbose
54
+ args: --verbose
55
.gitignore
@@ -1,2 +1,3 @@
1
.idea
2
*.xlsx
3
+coverage.txt
0 commit comments