Otherwise `cargo check` errors on the `-Wclippy::…` arguments from `.cargo/config.toml`. Usage as a dependency continues to work with 1.53 for now, but since it's not changed this could soon change.
33 lines
742 B
YAML
33 lines
742 B
YAML
name: Rust 1.55
|
|
|
|
on:
|
|
push:
|
|
branches: [main, next]
|
|
pull_request:
|
|
branches: [main, next]
|
|
|
|
jobs:
|
|
check_msrv:
|
|
name: Check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v2
|
|
- name: Install rust 1.55 toolchain
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: '1.55'
|
|
# Used to compile xtask
|
|
- name: Install rust stable toolchain
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
toolchain: stable
|
|
override: true
|
|
- name: Run checks
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: run
|
|
args: -p xtask --no-default-features ci msrv
|