CI #2885
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' | |
schedule: | |
- cron: '0 0 * * */2' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
env: | |
CARGO_TERM_COLOR: always | |
RUSTFLAGS: -D warnings -A unknown-lints | |
RUST_BACKTRACE: full | |
jobs: | |
format: | |
name: Format | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: rustup update nightly && rustup default nightly && rustup component add rustfmt | |
- run: cargo fmt --all -- --check | |
format-cargo-toml: | |
name: Format Crate Configuration Files | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: rustup update nightly && rustup default nightly | |
- run: cargo install cargo-sort | |
- run: cargo sort --workspace --check | |
docs: | |
name: Build Documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: rustup update stable && rustup default stable | |
- run: cargo +stable doc --workspace --all-features --no-deps --document-private-items | |
lint: | |
name: Lint (${{ matrix.os }} + ${{ matrix.channel }}) | |
needs: [format, format-cargo-toml, docs] | |
strategy: | |
fail-fast: true | |
matrix: | |
os: | |
- ubuntu-latest | |
channel: | |
- stable | |
- nightly | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- run: rustup update ${{ matrix.channel }} && rustup default ${{ matrix.channel }} && rustup component add clippy | |
- run: cargo install cargo-hakari --locked | |
- run: cargo hakari init workspace-hack --yes | |
- run: cargo hakari generate | |
- run: cargo hakari manage-deps --yes | |
- run: cargo hakari verify | |
- run: cargo install cargo-hack --locked | |
#- run: cargo clippy --workspace --all-features -vv | |
#- run: cargo hack clippy --workspace --feature-powerset --depth 3 --tests | |
#- run: cargo hack clippy --workspace --feature-powerset --depth 3 | |
#- run: cargo hack clippy --workspace --feature-powerset --depth 3 --bins | |
#- run: cargo hack clippy --workspace --feature-powerset --depth 3 --examples | |
test: | |
name: Test (${{ matrix.os }} + ${{ matrix.channel }}) | |
needs: [format, format-cargo-toml, docs] | |
strategy: | |
fail-fast: true | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
- windows-latest | |
channel: | |
- stable | |
- nightly | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- run: rustup update ${{ matrix.channel }} && rustup default ${{ matrix.channel }} | |
- run: cargo install cargo-nextest --locked | |
- run: cargo nextest run --workspace --release --all-features | |
compile-bench: | |
name: Compile Benchmarks (${{ matrix.os }} + ${{ matrix.channel }}) | |
needs: [format, format-cargo-toml, docs] | |
strategy: | |
fail-fast: true | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
- windows-latest | |
channel: | |
- stable | |
- nightly | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- run: rustup update ${{ matrix.channel }} && rustup default ${{ matrix.channel }} | |
- run: cargo bench --workspace --no-run --all-features |