We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 678de0d commit d1e4936Copy full SHA for d1e4936
.github/workflows/ci-cd.yml
@@ -28,11 +28,16 @@ jobs:
28
sudo apt-get update
29
sudo apt-get install gcc libgl1-mesa-dev xorg-dev
30
31
- - name: Build
32
- run: go build -v ./...
+ - name: Install dependencies
+ run: go mod download
33
34
- name: Test
35
- run: go test -v ./...
+ run: go test -coverprofile=coverage.txt
36
+
37
+ - name: Upload coverage reports to Codecov
38
+ uses: codecov/codecov-action@v5
39
+ with:
40
+ token: ${{ secrets.CODECOV_TOKEN }}
41
42
package_linux:
43
if: startsWith(github.ref, 'refs/tags/')
codecov.yml
@@ -0,0 +1,11 @@
1
+ignore:
2
+ - "internal/app/ui"
3
+ - "tools"
4
+coverage:
5
+ status:
6
+ project:
7
+ default:
8
+ informational: true
9
+ patch:
10
11
0 commit comments