mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-06 21:34:00 -05:00
Intended to address tau RefID "Gifn1u". There are still a few things that require nightly. - cargo +nightly fmt - fuzzing
24 lines
558 B
YAML
24 lines
558 B
YAML
name: Lints
|
|
|
|
# We only run these on trial-merges of PRs to reduce noise.
|
|
on: pull_request
|
|
|
|
jobs:
|
|
clippy:
|
|
name: Clippy
|
|
timeout-minutes: 30
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
components: clippy
|
|
override: true
|
|
- name: Run Clippy
|
|
uses: actions-rs/clippy-check@v1
|
|
with:
|
|
name: Clippy
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
args: --all-features --release -- -D warnings
|