Skip to content

Commit

Permalink
Updated test-unit make command to include all OSs
Browse files Browse the repository at this point in the history
Signed-off-by: Tanner Jones <[email protected]>
  • Loading branch information
tannerjones4075 committed Oct 30, 2023
1 parent a8d2541 commit a06cc09
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/test-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ jobs:
file: coverage.out
- name: Comment coverage report
run: |
if [ "${{ matrix.os }}" == "ubuntu-latest" ]; then # will only run on ubuntu
curl -sSfL https://codecov.io/bash | bash -s -- -Z -K -f coverage.out || echo "Codecov upload failed"
fi
case ${{ matrix.os }} in
ubuntu-latest|windows-latest|macOS-latest)
curl -sSfL https://codecov.io/bash | bash -s -- -Z -K -f coverage.out || echo "Codecov upload failed"
;;
esac
bench:
name: Benchmarks
runs-on: ubuntu-latest
Expand Down

0 comments on commit a06cc09

Please sign in to comment.