Bump bitflags
to v2 (#400)
#653
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: Rust CI | |
on: | |
push: | |
branches: [ master, main, next ] | |
pull_request: | |
branches: [ master, main, next ] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
rust: ["1.57.0", stable, beta, nightly] | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
features: [""] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust }} | |
override: true | |
- if: ${{ matrix.rust == '1.57.0' }} | |
run: mv Cargo.lock.msrv Cargo.lock | |
- name: build | |
run: | | |
cargo build --verbose | |
feature_check: | |
strategy: | |
matrix: | |
features: ["", "benchmarks"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
- name: check | |
run: | | |
cargo check --tests --no-default-features --features="$FEATURES" | |
env: | |
FEATURES: ${{ matrix.features }} | |
powerpc_cross: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: add_cross_target | |
run: | | |
rustup target add powerpc-unknown-linux-gnu | |
cargo build --target powerpc-unknown-linux-gnu | |
test_all: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: rustup default stable | |
- name: test | |
run: > | |
cargo test -v --all-targets | |
rustfmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
components: rustfmt | |
- name: Run rustfmt check | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: -- --check |