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
6 changes: 4 additions & 2 deletions .github/workflows/ci-lint-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@ runs:
using: "composite"
steps:
- name: Install Rust (nightly)
uses: dtolnay/rust-toolchain@nightly
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2025-01-02
- name: Lint deps
shell: bash
run: |
cargo install cargo-machete --locked
cargo machete
cargo install cargo-udeps --locked
cargo +nightly udeps
cargo +nightly-2025-01-02 udeps
8 changes: 5 additions & 3 deletions .github/workflows/ci-test-miri/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ runs:
using: "composite"
steps:
- name: Install Rust (nightly)
uses: dtolnay/rust-toolchain@nightly
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2025-01-02
- name: Cargo test (miri)
shell: bash
run: |
# Install and run miri tests
cargo clean
rustup component add --toolchain nightly miri
rustup component add --toolchain nightly-2025-01-02 miri
# This somehow prints errors in CI that don't show up locally
RUSTFLAGS=-Awarnings cargo +nightly miri test -p deno_core
RUSTFLAGS=-Awarnings cargo +nightly-2025-01-02 miri test -p deno_core
Loading