2022-06-09 08:39:49 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: ['main']
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
2023-02-27 09:21:41 +00:00
|
|
|
rust: [stable]
|
|
|
|
include:
|
|
|
|
- os: ubuntu-latest
|
2022-06-09 08:39:49 +00:00
|
|
|
rust: beta
|
2023-02-27 09:21:41 +00:00
|
|
|
- os: ubuntu-latest
|
2023-10-25 15:59:44 +00:00
|
|
|
rust: 1.61.0
|
2022-06-09 08:39:49 +00:00
|
|
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
steps:
|
2024-10-23 07:56:42 +00:00
|
|
|
- uses: actions/checkout@v4
|
2024-10-23 07:54:44 +00:00
|
|
|
- uses: dtolnay/rust-toolchain@master
|
2022-06-09 08:39:49 +00:00
|
|
|
with:
|
|
|
|
toolchain: ${{ matrix.rust }}
|
2024-10-23 07:56:14 +00:00
|
|
|
- run: cargo check --all-features --all-targets
|
2022-09-07 08:02:07 +00:00
|
|
|
env:
|
|
|
|
CARGO_INCREMENTAL: 0 # https://github.com/rust-lang/rust/issues/101518
|
2024-10-23 07:56:14 +00:00
|
|
|
- run: cargo test --all-features
|
2022-09-07 08:02:07 +00:00
|
|
|
env:
|
|
|
|
CARGO_INCREMENTAL: 0 # https://github.com/rust-lang/rust/issues/101518
|
2022-06-09 08:39:49 +00:00
|
|
|
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-10-23 07:56:42 +00:00
|
|
|
- uses: actions/checkout@v4
|
2024-10-23 07:54:44 +00:00
|
|
|
- uses: dtolnay/rust-toolchain@stable
|
2022-06-09 08:39:49 +00:00
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
components: rustfmt, clippy
|
2024-10-23 07:56:14 +00:00
|
|
|
- run: cargo fmt --all -- --check
|
|
|
|
- run: cargo clippy --all-targets --all-features -- -D warnings
|
2022-09-07 08:02:07 +00:00
|
|
|
env:
|
|
|
|
CARGO_INCREMENTAL: 0 # https://github.com/rust-lang/rust/issues/101518
|
2022-06-09 08:39:49 +00:00
|
|
|
|
|
|
|
audit:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-10-23 07:56:42 +00:00
|
|
|
- uses: actions/checkout@v4
|
2024-10-23 08:16:06 +00:00
|
|
|
- uses: EmbarkStudios/cargo-deny-action@v2
|