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

Depend on rust-cache v2 floating tag for easier maintenance #470

Merged
merged 1 commit into from
Dec 12, 2024
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/code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
toolchain: stable

- name: Rust Cache
uses: Swatinem/rust-cache@v2.7.3
uses: Swatinem/rust-cache@v2

- name: Run cargo test
run: cargo test --features signaling --all-targets
Expand All @@ -43,7 +43,7 @@ jobs:
target: wasm32-unknown-unknown

- name: Rust Cache
uses: Swatinem/rust-cache@v2.7.3
uses: Swatinem/rust-cache@v2

- name: Run cargo check
run: RUSTFLAGS=--cfg=web_sys_unstable_apis cargo check >
Expand All @@ -68,7 +68,7 @@ jobs:
components: rustfmt

- name: Rust Cache
uses: Swatinem/rust-cache@v2.7.3
uses: Swatinem/rust-cache@v2

- name: Run cargo clippy
run: cargo fmt --all --check
Expand All @@ -91,7 +91,7 @@ jobs:
components: clippy

- name: Rust Cache
uses: Swatinem/rust-cache@v2.7.3
uses: Swatinem/rust-cache@v2

- name: Run cargo clippy
run: cargo clippy --features signaling --all-targets -- -D warnings
Expand All @@ -111,7 +111,7 @@ jobs:
components: clippy

- name: Rust Cache
uses: Swatinem/rust-cache@v2.7.3
uses: Swatinem/rust-cache@v2

- name: Run cargo clippy
run: RUSTFLAGS=--cfg=web_sys_unstable_apis cargo clippy >
Expand Down
Loading