Be as warning-safe as we can with Rust 2024 around the corner #119
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: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
name: "Check OS" | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
env: | |
CLIPPY_LINTS: >- | |
-D clippy::all | |
-D deprecated-safe | |
-D future-incompatible | |
-D keyword-idents | |
-D let-underscore | |
-D nonstandard-style | |
-D refining-impl-trait | |
-D rust-2018-compatibility | |
-D rust-2018-idioms | |
-D rust-2021-compatibility | |
-D rust-2024-compatibility | |
-D unused | |
-D unsafe_code | |
-D unreachable-pub | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: cargo build --verbose | |
- name: Run tests | |
run: cargo test --verbose | |
- name: Clippy | |
run: cargo clippy --examples --bins --all -- ${{ env.CLIPPY_LINTS }} | |
- name: Clippy (all features) | |
run: rustup toolchain add nightly && cargo +nightly clippy --all-features --examples --bins --all -- ${{ env.CLIPPY_LINTS }} | |
- name: Build with static CRT | |
if: matrix.os == 'ubuntu-latest' | |
run: RUSTFLAGS="-C target-feature=+crt-static" cargo run --example example --target x86_64-unknown-linux-gnu --verbose | |
- name: Install wasm-pack | |
if: matrix.os == 'ubuntu-latest' | |
run: cargo install wasm-pack | |
- name: Build Wasm tests | |
if: matrix.os == 'ubuntu-latest' | |
run: wasm-pack build --target web tests-wasm/ |