Skip to content

Commit

Permalink
Fix test actions by excluding integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Einliterflasche committed May 18, 2023
1 parent 79bf888 commit 3095b40
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ jobs:
- name: Format
run: cargo fmt
- name: Run tests release
run: cargo test --release --verbose
run: |
cargo test --lib --release --verbose
cargo test --doc --release --verbose
- name: Run tests
run: cargo test --verbose
run: |
cargo test --lib --verbose
cargo test --doc --verbose

0 comments on commit 3095b40

Please sign in to comment.