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
16 changes: 11 additions & 5 deletions .github/workflows/qol.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.90.0
- run: cargo build

test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.90.0
- run: cargo test --all-features

miri-test:
Expand All @@ -26,9 +30,10 @@ jobs:
MIRIFLAGS: -Zmiri-disable-isolation
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@miri
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2025-05-16 # https://github.com/rust-lang/miri/issues/4323
toolchain: nightly-2026-01-25
components: miri
- run: cargo miri setup
- run: cargo miri test --all-features

Expand All @@ -39,8 +44,9 @@ jobs:
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.90.0
components: rustfmt, clippy
- run: cargo fmt --check
- run: cargo clippy --all-targets --all-features
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# will have compiled files and executables
debug/
target/

.workspaces/
.beads
.jj/

Expand All @@ -17,6 +17,9 @@ target/
# Contains mutation testing data
**/mutants.out*/

# LLVM profile/coverage raw output
*.profraw

# RustRover
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
Expand Down
Loading
Loading