Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Setup sccache
uses: mozilla-actions/sccache-action@v0.0.8
- name: "Run clippy (ignores errors, this is just a check)"
run: cargo clippy
continue-on-error: true
uses: mozilla-actions/sccache-action@v0.0.9
- name: "Run clippy"
run: cargo clippy --all-targets
- name: Run sccache stat for check
shell: bash
run: ${SCCACHE_PATH} --show-stats
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Setup sccache
uses: mozilla-actions/sccache-action@v0.0.8
uses: mozilla-actions/sccache-action@v0.0.9
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
Expand All @@ -28,7 +28,7 @@ jobs:
- name: "Run cargo test"
run: cargo test
- name: "Run cargo clippy"
run: cargo clippy
run: cargo clippy --all-targets
- name: "Build the workspace"
run: cargo build --workspace
- name: Run sccache stat for check
Expand Down