Bump version 0.2.17 #316
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: Check | |
on: | |
[push, pull_request] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
check: | |
name: Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: check | |
fmt: | |
name: Rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- run: rustup component add rustfmt | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --all -- --check | |
clippy: | |
name: Clippy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- run: rustup component add clippy | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: clippy | |
args: -- -D warnings | |
build: | |
strategy: | |
matrix: | |
target: | |
- x86_64-unknown-linux-gnu # arch: x86_64, os: linux | |
- aarch64-unknown-linux-gnu # arch: aarch64 | |
- armv7-unknown-linux-gnueabihf # arch: armv7 | |
- x86_64-apple-darwin # os: darwin | |
- aarch64-apple-darwin # os: darwin | |
- x86_64-pc-windows-msvc # os: windows | |
- i686-pc-windows-msvc | |
include: | |
- target: x86_64-unknown-linux-gnu | |
host_os: ubuntu-latest | |
- target: aarch64-unknown-linux-gnu | |
host_os: ubuntu-latest | |
- target: armv7-unknown-linux-gnueabihf | |
host_os: ubuntu-latest | |
- target: x86_64-apple-darwin | |
host_os: macos-latest | |
- target: aarch64-apple-darwin | |
host_os: macos-latest | |
- target: x86_64-pc-windows-msvc | |
host_os: windows-latest | |
- target: i686-pc-windows-msvc | |
host_os: windows-latest | |
runs-on: ${{ matrix.host_os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Prepare | |
shell: bash | |
run: | | |
rustup target add ${{ matrix.target }} | |
- name: Build | |
shell: bash | |
run: | | |
if [[ "${{ matrix.host_os }}" == "ubuntu-latest" ]]; then | |
sudo .github/workflows/install-cross.sh | |
cross build --verbose --target ${{ matrix.target }} | |
else | |
cargo build --verbose --target ${{ matrix.target }} | |
fi | |
- name: Run tests | |
run: cargo test --verbose --all-features | |