Merge branch 'release-0.5.0' #33
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
# Credit where credit is due. This is based on | |
# [A Few Github Action "Recipes" for Rust](https://shift.click/blog/github-actions-rust/). | |
name: tests | |
on: | |
[push, pull_request] | |
env: | |
RUST_BACKTRACE: 1 | |
jobs: | |
test: | |
name: Test Rust ${{ matrix.rust }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- { rust: stable, os: ubuntu-latest } | |
- { rust: stable, os: macos-latest } | |
- { rust: stable, os: windows-latest } | |
- { rust: stable-i686-msvc, os: windows-latest } | |
- { rust: beta, os: ubuntu-latest } | |
- { rust: nightly, os: ubuntu-latest } | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust }} | |
profile: minimal | |
override: true | |
- run: cargo test --verbose --workspace | |
- run: cargo test --verbose --workspace --all-features | |
- run: cargo test --verbose --workspace --no-default-features | |
clippy: | |
name: Lint with clippy | |
runs-on: windows-latest | |
env: | |
RUSTFLAGS: -Dwarnings | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
profile: minimal | |
override: true | |
components: clippy | |
- run: cargo clippy --workspace --all-targets --verbose | |
- run: cargo clippy --workspace --all-targets --verbose --no-default-features | |
- run: cargo clippy --workspace --all-targets --verbose --all-features | |
rustfmt: | |
name: Verify code formatting | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
profile: minimal | |
override: true | |
components: rustfmt | |
- run: cargo fmt --all -- --check |