mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
55 lines
1.4 KiB
YAML
55 lines
1.4 KiB
YAML
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
env:
|
|
RUSTFLAGS: -D warnings
|
|
CARGO_TERM_COLOR: always
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
name: ci
|
|
jobs:
|
|
lint:
|
|
name: code lint
|
|
# Pin to `20.04` instead of `ubuntu-latest`, until ubuntu-latest migration is complete
|
|
# See also <https://github.com/foundry-rs/foundry/issues/3827>
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v3
|
|
- name: Install toolchain
|
|
uses: dtolnay/rust-toolchain@nightly
|
|
with:
|
|
components: rustfmt, clippy
|
|
- uses: Swatinem/rust-cache@v2
|
|
with:
|
|
cache-on-failure: true
|
|
|
|
- name: cargo fmt
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: fmt
|
|
args: --all --check
|
|
|
|
- name: cargo clippy
|
|
uses: actions-rs/clippy-check@v1
|
|
with:
|
|
args: --all --all-features
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
doc-lint:
|
|
name: doc lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install toolchain
|
|
uses: dtolnay/rust-toolchain@stable
|
|
- uses: Swatinem/rust-cache@v2
|
|
- name: Check if documentation builds
|
|
run: RUSTDOCFLAGS="-D warnings" cargo doc --all --no-deps --all-features --document-private-items
|