Skip to content

Commit

Permalink
Update rust.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
andretcarpizo authored Dec 26, 2023
1 parent 74d0de5 commit c92d898
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ jobs:
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

clippy:
runs-on: ubuntu-latest
needs: build # Run this job after the build job
Expand All @@ -41,3 +45,5 @@ jobs:
run: cargo clippy --all-targets --all-features
env:
RUSTFLAGS: "-Dwarnings"


0 comments on commit c92d898

Please sign in to comment.