x25519 Rust #6
Workflow file for this run
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: x25519 Rust | |
on: | |
push: | |
branches: [ '**' ] | |
paths: 'x25519-dalek/**' | |
pull_request: | |
branches: [ '**' ] | |
paths: 'x25519-dalek/**' | |
defaults: | |
run: | |
working-directory: x25519-dalek | |
env: | |
CARGO_TERM_COLOR: always | |
RUSTFLAGS: '-D warnings' | |
RUSTDOCFLAGS: '-D warnings' | |
jobs: | |
msrv: | |
name: Current MSRV is 1.60.0 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# Re-resolve Cargo.lock with minimal versions | |
- uses: dtolnay/rust-toolchain@nightly | |
- run: cargo update -Z minimal-versions | |
# Now check that `cargo build` works with respect to the oldest possible | |
# deps and the stated MSRV | |
- uses: dtolnay/[email protected] | |
- run: cargo build |