Don't mind me deleting all of this 👀 #40
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: | |
pull_request: | |
push: | |
branches: | |
- main | |
env: | |
RUST_BACKTRACE: 1 | |
RUSTFLAGS: -Dwarnings | |
MSRV: "1.67" | |
jobs: | |
build_and_test_nix: | |
name: Build and test (Nix) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest] | |
rust: [nightly, stable] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
with: | |
submodules: recursive | |
- name: Install ${{ matrix.rust }} | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
- name: check | |
run: cargo check --all --bins --tests | |
- name: tests | |
run: cargo test --all | |
build_and_test_windows: | |
name: Build and test (Windows) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [windows-latest] | |
rust: [nightly, stable] | |
target: | |
- x86_64-pc-windows-gnu | |
- x86_64-pc-windows-msvc | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
with: | |
submodules: recursive | |
- name: Install ${{ matrix.rust }} | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
target: ${{ matrix.target }} | |
- uses: msys2/setup-msys2@v2 | |
- name: check | |
run: cargo check --all --bins --tests --target ${{ matrix.target }} | |
- name: check bench | |
if: matrix.rust == 'nightly' | |
run: cargo check --target ${{ matrix.target }} --benches | |
- name: tests | |
run: cargo test --all --target ${{ matrix.target }} | |
cross: | |
name: Cross compile | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
target: | |
- i686-unknown-linux-gnu | |
- armv7-linux-androideabi | |
- aarch64-linux-android | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
with: | |
submodules: recursive | |
- name: Install nightly | |
# See https://github.com/cross-rs/cross/issues/1222 | |
uses: dtolnay/[email protected] | |
- name: Install cross | |
run: cargo install cross | |
- name: check | |
run: cross check --all --target ${{ matrix.target }} | |
- name: test | |
run: cross test --all --target ${{ matrix.target }} | |
check_fmt_and_docs: | |
name: Checking fmt and docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rustfmt | |
- name: fmt | |
run: cargo fmt --all -- --check | |
- name: Docs | |
run: cargo doc | |
clippy_check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: clippy | |
- name: clippy check | |
run: cargo clippy --message-format=json --all-features --all-targets | |
msrv: | |
name: Minimal Supported Rust Version | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ env.MSRV }} | |
- name: Check MSRV all features | |
run: | | |
cargo +$MSRV check --workspace --all-targets --no-default-features |