this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: add code coverage uploading

+13
+13
.github/workflows/nix.yml
··· 22 22 # Run 1 at a time and print all the log files 23 23 run: nix flake check --max-jobs 1 -L 24 24 25 + # This should really be a noop since the package is built in the checks 25 26 - name: Build 26 27 run: nix build 28 + 29 + # This should really be a noop since the package is already built 30 + # This is run to get the coverage file in the right place 31 + - name: Build Coverage 32 + run: nix build -L .#checks.x86_64-linux.cmprss-tarpaulin 33 + 34 + # Upload code coverage 35 + - name: Upload coverage to Codecov 36 + uses: codecov/codecov-action@v4 37 + with: 38 + token: ${{ secrets.CODECOV_TOKEN }} 39 + files: result/cobertura.xml