Skip to content

Commit

Permalink
Does this unbreak caching?
Browse files Browse the repository at this point in the history
  • Loading branch information
fasterthanlime committed Jan 26, 2024
1 parent 59bc5be commit e54351c
Showing 1 changed file with 12 additions and 22 deletions.
34 changes: 12 additions & 22 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,8 @@ jobs:
with:
tool: just,nextest,cargo-llvm-cov
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets --all-features
run: |
cargo clippy --all-targets --all-features
- name: Run tests and collect coverage
run: just ci-test
- name: Upload coverage information
Expand All @@ -50,7 +48,7 @@ jobs:
RUSTC_WRAPPER: "sccache"
steps:
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Install Rust specified toolchain
Expand All @@ -62,15 +60,11 @@ jobs:
with:
tool: nextest
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
args: --all-targets --all-features
run: |
cargo check --all-targets --all-features
- name: Run cargo nextest
uses: actions-rs/cargo@v1
with:
command: nextest
args: run --profile ci
run: |
cargo nextest run --profile ci
test-macos:
runs-on: macos-12
env:
Expand All @@ -80,7 +74,7 @@ jobs:
RUSTC_WRAPPER: "sccache"
steps:
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Install Rust specified toolchain
Expand All @@ -92,12 +86,8 @@ jobs:
with:
tool: nextest
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
args: --all-targets --all-features
run: |
cargo check --all-targets --all-features
- name: Run cargo nextest
uses: actions-rs/cargo@v1
with:
command: nextest
args: run --profile ci
run: |
cargo nextest run --profile ci

0 comments on commit e54351c

Please sign in to comment.