2023-03-29 19:33:22 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
env:
|
|
|
|
RUST_BACKTRACE: 1
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
CLICOLOR: 1
|
|
|
|
|
2024-01-18 15:22:25 +00:00
|
|
|
concurrency:
|
|
|
|
group: "${{ github.workflow }}-${{ github.ref }}"
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-03-29 19:33:22 +00:00
|
|
|
jobs:
|
|
|
|
ci:
|
|
|
|
permissions:
|
|
|
|
contents: none
|
|
|
|
name: CI
|
|
|
|
needs: [test, msrv, docs, rustfmt, clippy]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Done
|
|
|
|
run: exit 0
|
|
|
|
test:
|
|
|
|
name: Test
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-02-08 13:45:48 +00:00
|
|
|
os: ["ubuntu-latest", "windows-latest", "macos-14"]
|
2023-03-29 19:33:22 +00:00
|
|
|
rust: ["stable"]
|
|
|
|
continue-on-error: ${{ matrix.rust != 'stable' }}
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-10-01 01:37:07 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-03-29 19:33:22 +00:00
|
|
|
- name: Install Rust
|
|
|
|
uses: dtolnay/rust-toolchain@stable
|
|
|
|
with:
|
|
|
|
toolchain: ${{ matrix.rust }}
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
- name: Build
|
2024-01-03 14:27:59 +00:00
|
|
|
run: cargo test --workspace --no-run
|
2023-03-29 19:33:22 +00:00
|
|
|
- name: Default features
|
|
|
|
run: cargo test --workspace
|
|
|
|
- name: All features
|
|
|
|
run: cargo test --workspace --all-features
|
|
|
|
- name: No-default features
|
|
|
|
run: cargo test --workspace --no-default-features
|
|
|
|
msrv:
|
2024-02-15 15:58:01 +00:00
|
|
|
name: "Check MSRV"
|
2023-03-29 19:33:22 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-10-01 01:37:07 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-03-29 19:33:22 +00:00
|
|
|
- name: Install Rust
|
|
|
|
uses: dtolnay/rust-toolchain@stable
|
|
|
|
with:
|
2024-02-15 15:58:01 +00:00
|
|
|
toolchain: stable
|
2023-03-29 19:33:22 +00:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2024-02-15 15:58:01 +00:00
|
|
|
- uses: taiki-e/install-action@cargo-hack
|
2023-03-29 19:33:22 +00:00
|
|
|
- name: Default features
|
2024-02-21 02:22:05 +00:00
|
|
|
run: cargo hack check --locked --rust-version --ignore-private --workspace --all-targets
|
2023-03-29 19:33:22 +00:00
|
|
|
- name: All features
|
2024-02-21 02:22:05 +00:00
|
|
|
run: cargo hack check --locked --rust-version --ignore-private --workspace --all-targets --all-features
|
2023-03-29 19:33:22 +00:00
|
|
|
- name: No-default features
|
2024-02-21 02:22:05 +00:00
|
|
|
run: cargo hack check --locked --rust-version --ignore-private --workspace --all-targets --no-default-features
|
2023-08-07 21:16:17 +00:00
|
|
|
lockfile:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-10-01 01:37:07 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-08-07 21:16:17 +00:00
|
|
|
- name: Install Rust
|
|
|
|
uses: dtolnay/rust-toolchain@stable
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
- name: "Is lockfile updated?"
|
|
|
|
run: cargo fetch --locked
|
2023-03-29 19:33:22 +00:00
|
|
|
docs:
|
|
|
|
name: Docs
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-10-01 01:37:07 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-03-29 19:33:22 +00:00
|
|
|
- name: Install Rust
|
|
|
|
uses: dtolnay/rust-toolchain@stable
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
- name: Check documentation
|
|
|
|
env:
|
|
|
|
RUSTDOCFLAGS: -D warnings
|
|
|
|
run: cargo doc --workspace --all-features --no-deps --document-private-items
|
|
|
|
rustfmt:
|
|
|
|
name: rustfmt
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-10-01 01:37:07 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-03-29 19:33:22 +00:00
|
|
|
- name: Install Rust
|
|
|
|
uses: dtolnay/rust-toolchain@stable
|
|
|
|
with:
|
|
|
|
# Not MSRV because its harder to jump between versions and people are
|
|
|
|
# more likely to have stable
|
|
|
|
toolchain: stable
|
|
|
|
components: rustfmt
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
- name: Check formatting
|
|
|
|
run: cargo fmt --all -- --check
|
|
|
|
clippy:
|
|
|
|
name: clippy
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
security-events: write # to upload sarif results
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-10-01 01:37:07 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-03-29 19:33:22 +00:00
|
|
|
- name: Install Rust
|
|
|
|
uses: dtolnay/rust-toolchain@stable
|
|
|
|
with:
|
2024-02-15 16:03:14 +00:00
|
|
|
toolchain: "1.76" # STABLE
|
2023-03-29 19:33:22 +00:00
|
|
|
components: clippy
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
- name: Install SARIF tools
|
|
|
|
run: cargo install clippy-sarif --version 0.3.4 --locked # Held back due to msrv
|
|
|
|
- name: Install SARIF tools
|
|
|
|
run: cargo install sarif-fmt --version 0.3.4 --locked # Held back due to msrv
|
|
|
|
- name: Check
|
|
|
|
run: >
|
|
|
|
cargo clippy --workspace --all-features --all-targets --message-format=json -- -D warnings --allow deprecated
|
|
|
|
| clippy-sarif
|
|
|
|
| tee clippy-results.sarif
|
|
|
|
| sarif-fmt
|
|
|
|
continue-on-error: true
|
|
|
|
- name: Upload
|
2024-01-01 00:59:58 +00:00
|
|
|
uses: github/codeql-action/upload-sarif@v3
|
2023-03-29 19:33:22 +00:00
|
|
|
with:
|
|
|
|
sarif_file: clippy-results.sarif
|
|
|
|
wait-for-processing: true
|
2023-05-18 19:58:59 +00:00
|
|
|
- name: Report status
|
|
|
|
run: cargo clippy --workspace --all-features --all-targets -- -D warnings --allow deprecated
|
2024-02-08 13:48:29 +00:00
|
|
|
coverage:
|
|
|
|
name: Coverage
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Rust
|
|
|
|
uses: dtolnay/rust-toolchain@stable
|
|
|
|
with:
|
2024-02-08 15:07:52 +00:00
|
|
|
toolchain: stable
|
2024-02-08 13:48:29 +00:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
- name: Install cargo-tarpaulin
|
|
|
|
run: cargo install cargo-tarpaulin
|
|
|
|
- name: Gather coverage
|
|
|
|
run: cargo tarpaulin --output-dir coverage --out lcov
|
|
|
|
- name: Publish to Coveralls
|
|
|
|
uses: coverallsapp/github-action@master
|
|
|
|
with:
|
|
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|