commit 7bd6e689cd4a7c8386f47917c23e9827564eab8f parent 5bd45e891d4bf4face1556ff930ed1716ea6b4f7 Author: MTRNord <mtrnord1@gmail.com> Date: Sun, 25 Feb 2024 08:17:35 +0100 Add codecov to CI Diffstat:
| M | .github/workflows/ci.yaml | | | 5 | ++++- |
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml @@ -22,8 +22,11 @@ jobs: - run: brew install vips if: matrix.os == 'macOS-latest' - run: "go test ./..." - - run: "go vet ./..." + - run: go test -race -covermode=atomic -coverprofile=coverage.out - uses: dominikh/staticcheck-action@v1.2.0 with: install-go: false cache-key: ${{ matrix.go }} + - name: Upload coverage reports to Codecov with GitHub Action + uses: codecov/codecov-action@v3 +