* chore(docs): update version, rust edition and remove advisories #24
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: MSRV | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - "*" | |
| pull_request: | |
| jobs: | |
| msrv: | |
| name: Check MSRV | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Rust (MSRV) | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: 1.80.1 # ← choose your MSRV | |
| - name: Cargo check | |
| run: cargo check --all-features | |
| - name: Cargo test | |
| run: cargo test --all-features |