chore: Versioned Kona (#111) #292
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: lint | |
on: | |
pull_request: | |
merge_group: | |
push: | |
branches: [main] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
# clippy-binaries: | |
# name: clippy | |
# runs-on: ubuntu-latest | |
# timeout-minutes: 30 | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - uses: dtolnay/rust-toolchain@clippy | |
# - uses: Swatinem/rust-cache@v2 | |
# with: | |
# cache-on-failure: true | |
# - run: | |
# cargo clippy --bin BINARY --workspace | |
# env: | |
# RUSTFLAGS: -D warnings | |
clippy: | |
name: clippy | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@clippy | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: true | |
- run: cargo clippy --workspace --examples --tests --benches --all-features | |
env: | |
RUSTFLAGS: -D warnings | |
crate-checks: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: taiki-e/install-action@cargo-hack | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: true | |
- run: cargo hack check | |
msrv: | |
name: MSRV | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: "1.82" # MSRV | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: true | |
# update when a binary exists | |
# - run: cargo build --bin BINARY --workspace | |
- run: cargo build --workspace | |
env: | |
RUSTFLAGS: -D warnings | |
docs: | |
name: docs | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@nightly | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: true | |
- run: cargo docs --document-private-items | |
env: | |
# Note below only applies for when we have a book.yml | |
# Keep in sync with ./book.yml:jobs.build | |
# This should only add `-D warnings` | |
RUSTDOCFLAGS: | |
--cfg docsrs --show-type-layout --generate-link-to-definition --enable-index-page | |
-Zunstable-options -D warnings | |
fmt: | |
name: fmt | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: rustfmt | |
- run: cargo fmt --all --check | |
lint-success: | |
name: lint success | |
runs-on: ubuntu-latest | |
if: always() | |
# re-add when a binary exists | |
# needs: [clippy-binaries, clippy, crate-checks, docs, fmt] | |
needs: [clippy, crate-checks, docs, fmt] | |
timeout-minutes: 30 | |
steps: | |
- name: Decide whether the needed jobs succeeded or failed | |
uses: re-actors/alls-green@release/v1 | |
with: | |
jobs: ${{ toJSON(needs) }} |