-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aa276c8
commit 3ba6dbe
Showing
4 changed files
with
879 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,8 +35,20 @@ jobs: | |
- name: Run rustfmt --check | ||
run: cargo fmt -- --check | ||
|
||
msrv: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
# rust-version from Cargo.toml | ||
- name: Install Rust 1.66.0 | ||
uses: dtolnay/[email protected] | ||
- name: Use predefined lockfile | ||
run: mv Cargo.lock.MSRV Cargo.lock | ||
- name: Build (lib only) | ||
run: cargo check --locked | ||
|
||
test: | ||
needs: [clippy, fmt] | ||
needs: [clippy, fmt, msrv] | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
|
Oops, something went wrong.