MSRV #864
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
name: MSRV | |
on: | |
schedule: | |
- cron: "0 9,18 * * *" | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
msrv: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup | |
run: cargo install cargo-msrv --locked | |
- name: Msrv WTransport | |
run: cargo msrv --path wtransport | |
- name: Msrv WTransport-Proto | |
run: cargo msrv --path wtransport-proto | |
- name: Msrv Check WTransport | |
run: cargo msrv --path wtransport --log-level trace verify | |
- name: Msrv Check WTransport-Proto | |
run: cargo msrv --path wtransport-proto --log-level trace verify |