Skip to content

Commit

Permalink
check for minimum rust version
Browse files Browse the repository at this point in the history
  • Loading branch information
ekiwi committed May 8, 2024
1 parent 9ade776 commit deaff7a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,17 @@ jobs:
- uses: actions/checkout@v3
- uses: obi1kenobi/cargo-semver-checks-action@v2

msrv:
name: Check Minimum Rust Version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install MSRV
run: cargo install cargo-msrv
- name: Check MSRV
run: cargo msrv verify


examples:
name: Try Examples
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
name = "wellen"
version = "0.9.9"
edition = "2021"
# we require the `div_ceil` method on integers
rust-version="1.73.0"
authors = ["Kevin Laeufer <[email protected]>"]
description = "Fast VCD and FST library for waveform viewers written in Rust."
repository = "https://github.com/ekiwi/wellen"
Expand Down

0 comments on commit deaff7a

Please sign in to comment.