Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): Bump Swatinem/rust-cache from 2.7.3 to 2.7.5 #234

Merged
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
toolchain: ${{ matrix.toolchain }}
targets: ${{ matrix.target }}
- name: Cache build artifacts
uses: Swatinem/[email protected].3
uses: Swatinem/[email protected].5
with:
key: ${{ matrix.target }}
- name: Run tests
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
toolchain: stable
components: rustfmt
- name: Cache build artifacts
uses: Swatinem/[email protected].3
uses: Swatinem/[email protected].5
- name: Check code formatted
run: cargo fmt -- --check

Expand All @@ -88,7 +88,7 @@ jobs:
toolchain: stable
components: clippy
- name: Cache build artifacts
uses: Swatinem/[email protected].3
uses: Swatinem/[email protected].5
- name: Check no lint warnings
run: cargo clippy -- -D warnings
- name: Check no lint warnings (all features)
Expand All @@ -107,7 +107,7 @@ jobs:
with:
toolchain: stable
- name: Cache build artifacts
uses: Swatinem/[email protected].3
uses: Swatinem/[email protected].5
- name: Check no `rustdoc` lint warnings
run: RUSTDOCFLAGS="-D warnings" cargo doc --no-deps --document-private-items --all-features

Expand All @@ -122,6 +122,6 @@ jobs:
with:
toolchain: nightly
- name: Cache build artifacts
uses: Swatinem/[email protected].3
uses: Swatinem/[email protected].5
- name: Run benchmarks
run: cargo bench --all-features