Skip to content

Commit

Permalink
chore: reduce CI bloat
Browse files Browse the repository at this point in the history
  • Loading branch information
Theodus committed Nov 13, 2023
1 parent 64b629a commit 93fcb2c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ jobs:
with:
toolchain: stable
components: rustfmt, clippy
profile: minimal
override: true

- name: Cache Cargo build files
uses: Leafwing-Studios/cargo-cache@v1
Expand All @@ -46,7 +48,8 @@ jobs:
- run: cargo clippy -- -D warnings

- name: Unit tests
run: cargo test --lib -- --nocapture
run: cargo test --lib

- name: Integration tests
run: cargo test --test '*'
# the cargo clean is to avoid running out of disk space, hopefully unnecessary in the future
run: cargo clean && cargo test --test '*'

0 comments on commit 93fcb2c

Please sign in to comment.