2022-09-04 18:43:52 +10:00
|
|
|
name: Rust
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "main" ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ "main" ]
|
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
|
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2022-09-10 14:59:10 +10:00
|
|
|
- uses: dtolnay/rust-toolchain@nightly
|
|
|
|
with:
|
|
|
|
components: clippy, rustfmt
|
|
|
|
|
|
|
|
- name: Validate formatting on ${{ matrix.os }}
|
|
|
|
run: cargo fmt --all -- --check
|
|
|
|
- name: Run clippy lints on ${{ matrix.os }}
|
2022-09-10 19:40:58 +10:00
|
|
|
run: cargo +stable clippy --tests --no-deps --all-features --all-targets
|
2022-09-04 18:43:52 +10:00
|
|
|
- name: Run tests on ${{ matrix.os }}
|
2022-09-10 19:40:58 +10:00
|
|
|
run: cargo +stable test --all-features --all-targets
|