Skip to content
Closed
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
13 changes: 8 additions & 5 deletions .github/workflows/features.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,20 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Rust toolchain (nightly)
# Toolchain comes from rust-toolchain.toml (pinned nightly to work
# around the ethnum/polars-arrow transitive break on newer nightlies).
# `dtolnay/rust-toolchain@master` reads the file when `toolchain:` is
# omitted, and rustup honours it on the cargo invocations below.
- name: Rust toolchain (from rust-toolchain.toml)
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
components: clippy,rustfmt

- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
target-dir: /tmp/target

- run: cargo +nightly test --target-dir /tmp/target -- --quiet
- run: cargo +nightly test --no-default-features --target-dir /tmp/target -- --quiet
- run: cargo +nightly test --all-features --target-dir /tmp/target -- --quiet
- run: cargo test --target-dir /tmp/target -- --quiet
- run: cargo test --no-default-features --target-dir /tmp/target -- --quiet
- run: cargo test --all-features --target-dir /tmp/target -- --quiet
Loading