We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b796afb commit 63a0fd5Copy full SHA for 63a0fd5
1 file changed
.github/workflows/release.yml
@@ -17,14 +17,19 @@ jobs:
17
- name: Set up Go
18
uses: actions/setup-go@v5
19
20
+ - name: Display Go version
21
+ run: go version
22
+
23
- name: Run tests with coverage
24
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
-
25
+ codecov:
26
+ runs-on: ubuntu-latest
27
+ needs: test
28
+ steps:
29
- name: Upload coverage to Codecov
30
uses: codecov/codecov-action@v3
31
with:
32
file: ./coverage.txt
- fail_ci_if_error: true
33
release:
34
runs-on: ubuntu-latest
35
needs: test
0 commit comments