Skip to content

Commit

Permalink
more checks for github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bwlang committed Feb 10, 2024
1 parent edac2b7 commit a903043
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@cargo-llvm-cov@v2
- name: Build
run: cargo build --verbose
- name: Run Tests
run: cargo test --verbose
- name: Run tests
run: cargo test --verbose
- name: Check code style
run: cargo clippy -- -D warnings
- name: Check code coverage
run: cargo llvm-cov --html --verbose

0 comments on commit a903043

Please sign in to comment.