typos/.github/workflows/ci.yml

162 lines
4.4 KiB
YAML
Raw Normal View History

2023-03-29 15:33:22 -04:00
name: CI
permissions:
contents: read
2021-07-01 16:45:56 -04:00
on:
pull_request:
push:
branches:
- master
2023-03-29 15:33:22 -04:00
env:
RUST_BACKTRACE: 1
CARGO_TERM_COLOR: always
CLICOLOR: 1
COLUMNS: 130
2023-03-29 15:33:22 -04:00
2024-01-18 10:22:25 -05:00
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
2021-07-01 16:45:56 -04:00
jobs:
2021-08-16 12:23:25 -04:00
ci:
2023-03-29 15:33:22 -04:00
permissions:
contents: none
2021-08-16 12:23:25 -04:00
name: CI
needs: [test, msrv, lockfile, docs, rustfmt, clippy]
2021-08-16 12:23:25 -04:00
runs-on: ubuntu-latest
2024-04-01 12:36:58 -04:00
if: "always()"
2021-08-16 12:23:25 -04:00
steps:
2024-04-01 12:36:58 -04:00
- name: Failed
run: exit 1
if: "contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') || contains(needs.*.result, 'skipped')"
2021-07-01 16:45:56 -04:00
test:
name: Test
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
2021-07-07 16:38:16 -04:00
rust: ["stable"]
2021-07-01 16:45:56 -04:00
continue-on-error: ${{ matrix.rust != 'stable' }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
2021-07-01 16:45:56 -04:00
- name: Install Rust
2023-03-29 15:33:22 -04:00
uses: dtolnay/rust-toolchain@stable
2021-07-01 16:45:56 -04:00
with:
toolchain: ${{ matrix.rust }}
2024-01-03 09:29:34 -05:00
components: rustfmt
- uses: Swatinem/rust-cache@v2
- uses: taiki-e/install-action@cargo-hack
2022-02-15 14:31:29 -05:00
- name: Build
2024-01-03 09:27:59 -05:00
run: cargo test --workspace --no-run
- name: Test
run: cargo hack test --feature-powerset --workspace
2021-07-01 16:45:56 -04:00
msrv:
name: "Check MSRV"
2021-07-01 16:45:56 -04:00
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
2021-07-01 16:45:56 -04:00
- name: Install Rust
2023-03-29 15:33:22 -04:00
uses: dtolnay/rust-toolchain@stable
2021-07-01 16:45:56 -04:00
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2
- uses: taiki-e/install-action@cargo-hack
2021-07-01 16:45:56 -04:00
- name: Default features
run: cargo hack check --feature-powerset --locked --rust-version --ignore-private --workspace --all-targets
2023-08-07 17:16:17 -04:00
lockfile:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
2023-08-07 17:16:17 -04:00
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2
- name: "Is lockfile updated?"
2024-03-28 10:53:02 -04:00
run: cargo update --workspace --locked
2021-07-01 16:45:56 -04:00
docs:
name: Docs
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
2021-07-01 16:45:56 -04:00
- name: Install Rust
2023-03-29 15:33:22 -04:00
uses: dtolnay/rust-toolchain@stable
2021-07-01 16:45:56 -04:00
with:
toolchain: "1.82.0" # STABLE
- uses: Swatinem/rust-cache@v2
2021-07-01 16:45:56 -04:00
- name: Check documentation
env:
RUSTDOCFLAGS: -D warnings
2022-02-15 14:31:29 -05:00
run: cargo doc --workspace --all-features --no-deps --document-private-items
2021-07-01 16:45:56 -04:00
rustfmt:
name: rustfmt
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
2021-07-01 16:45:56 -04:00
- name: Install Rust
2023-03-29 15:33:22 -04:00
uses: dtolnay/rust-toolchain@stable
2021-07-01 16:45:56 -04:00
with:
toolchain: "1.82.0" # STABLE
2021-07-01 16:45:56 -04:00
components: rustfmt
- uses: Swatinem/rust-cache@v2
2021-07-01 16:45:56 -04:00
- name: Check formatting
run: cargo fmt --all -- --check
clippy:
name: clippy
runs-on: ubuntu-latest
2023-03-29 15:33:22 -04:00
permissions:
security-events: write # to upload sarif results
2021-07-01 16:45:56 -04:00
steps:
- name: Checkout repository
uses: actions/checkout@v4
2021-07-01 16:45:56 -04:00
- name: Install Rust
2023-03-29 15:33:22 -04:00
uses: dtolnay/rust-toolchain@stable
2021-07-01 16:45:56 -04:00
with:
toolchain: "1.82.0" # STABLE
2021-07-01 16:45:56 -04:00
components: clippy
- uses: Swatinem/rust-cache@v2
2023-03-29 15:33:22 -04:00
- name: Install SARIF tools
run: cargo install clippy-sarif --locked
2023-03-29 15:33:22 -04:00
- name: Install SARIF tools
run: cargo install sarif-fmt --locked
2023-03-29 15:33:22 -04:00
- 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
uses: github/codeql-action/upload-sarif@v3
2021-07-01 16:45:56 -04:00
with:
2023-03-29 15:33:22 -04:00
sarif_file: clippy-results.sarif
wait-for-processing: true
- name: Report status
run: cargo clippy --workspace --all-features --all-targets -- -D warnings --allow deprecated
2024-02-08 08:48:29 -05: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 10:07:52 -05:00
toolchain: stable
2024-02-08 08:48:29 -05: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 }}