msrv #79
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: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
schedule: | |
- cron: "47 5 * * 6" | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Crate | |
uses: actions/checkout@v3 | |
- name: Checkout Toolchain | |
uses: dtolnay/[email protected] | |
- name: Running test script | |
run: | | |
cargo update -p log --precise=0.4.18 | |
cargo update -p httpdate --precise=1.0.2 | |
cargo update -p serde_json --precise=1.0.100 | |
cargo update -p chrono --precise=0.4.23 | |
cargo update -p num-traits --precise=0.2.18 | |
cargo update -p httpdate --precise=1.0.2 | |
cargo test | |
cargo test --features "json-using-serde proxy punycode" |