forked from extendr/extendr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ci: check msrv * chore: set msrv of extendr-api to 1.60 (checked by cargo-msrv)
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Check MSRV | ||
on: | ||
push: | ||
branches: | ||
- master | ||
paths: | ||
- "**.rs" | ||
- "**/Cargo.toml" | ||
pull_request: | ||
branches: | ||
- master | ||
paths: | ||
- "**.rs" | ||
- "**/Cargo.toml" | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
test-min-rust-version: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: baptiste0928/cargo-install@v2 | ||
with: | ||
crate: cargo-msrv | ||
- name: Verify minimum rust version | ||
run: cargo-msrv --path extendr-api/ verify |
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