Skip to content
Open
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
features: hashbrown
runs-on: ${{ matrix.target.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@nightly
- name: Generate lockfile with minimal dependency versions
run: cargo +nightly generate-lockfile -Zminimal-versions
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
- visualizer,std
runs-on: ${{ matrix.target.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Cargo test all targets
run: cargo test --workspace --all-targets --no-default-features --features ${{ matrix.target.backend }},${{ matrix.features }}
- name: Cargo test docs
Expand All @@ -59,7 +59,7 @@ jobs:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Cargo fmt
run: cargo fmt --all -- --check

Expand All @@ -81,7 +81,7 @@ jobs:
- visualizer,std
runs-on: ${{ matrix.target.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Cargo clippy
run: cargo clippy --workspace --all-targets --no-default-features --features ${{ matrix.target.backend }},${{ matrix.features }} -- -D warnings

Expand All @@ -95,14 +95,14 @@ jobs:
env:
RUSTDOCFLAGS: -Dwarnings
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Build documentation
run: cargo doc --no-deps --workspace --all-features --document-private-items

readme:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Use cached cargo-readme
uses: actions/cache@v4
id: cargo-readme-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ jobs:
if: github.repository_owner == 'Traverse-Research'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Publish
run: cargo publish --token ${{ secrets.cratesio_token }}
Loading