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
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,19 @@ jobs:

- name: Run cargo test
run: cargo test --locked

msrv:
name: MSRV Check
runs-on: ubuntu-24.04
steps:
- name: Check out repository
uses: actions/checkout@v5

- name: Install minimum supported Rust version
uses: dtolnay/rust-toolchain@1.85

- name: Restore Cargo cache
uses: Swatinem/rust-cache@v2

- name: Run cargo check
run: cargo check --locked --all-targets
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name = "dagger"
version = "0.2.0"
edition = "2024"
license = "GPL-3.0-or-later"
rust-version = "1.85"

[[bin]]
name = "dgr"
Expand Down
Loading