Update rerun #326
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
on: | |
pull_request: | |
push: | |
branches: ["main"] | |
name: Rust | |
env: | |
RUSTFLAGS: -D warnings | |
RUSTDOCFLAGS: -D warnings | |
jobs: | |
fmt-crank-check-test: | |
name: Format + check + test | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: 1.82.0 | |
components: rustfmt, clippy | |
- name: Install packages (Linux) | |
if: runner.os == 'Linux' | |
uses: awalsh128/[email protected] | |
with: | |
packages: libxcb-xfixes0-dev libxkbcommon-dev libssl-dev libgtk-3-dev # libgtk-3-dev is used by rfd | |
version: 1.0 | |
execute_install_scripts: true | |
- name: Set up cargo cache | |
uses: Swatinem/rust-cache@v2 | |
- name: check --all-features | |
run: cargo check --locked --all-features --all-targets | |
- name: check --no-default-features | |
run: cargo check --locked --no-default-features --all-targets | |
- name: Rustfmt | |
run: cargo fmt --all -- --check | |
- name: cargo doc | |
run: cargo doc --no-deps --all-features | |
- name: cargo doc --document-private-items | |
run: cargo doc --document-private-items --no-deps --all-features | |
- name: clippy | |
run: cargo clippy --all-targets --all-features -- -D warnings | |
# --------------------------------------------------------------------------- | |
check_wasm: | |
name: Check wasm32 + wasm-bindgen | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: 1.82.0 | |
targets: wasm32-unknown-unknown | |
- run: sudo apt-get update && sudo apt-get install libgtk-3-dev libatk1.0-dev | |
- name: Set up cargo cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Check wasm32 | |
run: RUSTFLAGS='--cfg getrandom_backend="wasm_js"' cargo check --target wasm32-unknown-unknown | |
# --------------------------------------------------------------------------- | |
cargo-deny: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- target: aarch64-apple-darwin | |
- target: aarch64-linux-android | |
- target: wasm32-unknown-unknown | |
- target: x86_64-pc-windows-msvc | |
- target: x86_64-unknown-linux-musl | |
name: cargo-deny ${{ matrix.target }} | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: EmbarkStudios/cargo-deny-action@v2 | |
with: | |
rust-version: "1.82.0" | |
log-level: error | |
command: check | |
arguments: --target ${{ matrix.target }} | |
# --------------------------------------------------------------------------- | |
tests: | |
name: Run tests | |
# We run the tests on macOS because it will run with a actual GPU | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: 1.82.0 | |
- name: Set up cargo cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Run tests | |
run: cargo test --all | |
- name: Run doc-tests | |
run: cargo test --doc |