Release 2.1.2 #9
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: ci | |
on: | |
push: | |
branches: | |
- main | |
tags-ignore: | |
- '*' | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
rust: ['stable', 'nightly', '1.74.0'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Rust toolchain | |
run: rustup toolchain install ${{ matrix.rust }} --profile minimal | |
- name: Run "cargo check" | |
uses: actions-rs/cargo@v1 | |
with: | |
toolchain: ${{ matrix.rust }} | |
command: check | |
args: --workspace --verbose --all-features --tests --examples | |
- name: Run "cargo test" | |
uses: actions-rs/cargo@v1 | |
with: | |
toolchain: ${{ matrix.rust }} | |
command: test | |
args: --workspace --verbose --all-features | |
clippy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Rust toolchain | |
run: rustup toolchain install stable --profile minimal | |
- name: Run "cargo clippy" | |
uses: actions-rs/cargo@v1 | |
with: | |
toolchain: stable | |
command: clippy | |
args: --workspace --verbose --all-features | |
rustfmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Rust toolchain | |
run: rustup toolchain install nightly --profile minimal --component rustfmt | |
- name: Run "cargo fmt" | |
uses: actions-rs/cargo@v1 | |
with: | |
toolchain: nightly | |
command: fmt | |
args: -- --check |