79 lines
1.8 KiB
YAML
79 lines
1.8 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
|
|
clippy:
|
|
name: Clippy
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3.5.2
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- uses: actions-rs/toolchain@v1.0.7
|
|
with:
|
|
toolchain: stable
|
|
override: true
|
|
|
|
- name: Check workflow permissions
|
|
id: check_permissions
|
|
uses: scherermichael-oss/action-has-permission@1.0.6
|
|
with:
|
|
required-permission: write
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Run clippy action to produce annotations
|
|
uses: actions-rs/clippy-check@v1.0.7
|
|
if: ${{ steps.check_permissions.outputs.has-permission }}
|
|
with:
|
|
# GitHub displays the clippy job and its results as separate entries
|
|
name: Clippy (stable) Results
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
args: --all-features --all-targets -- -D warnings
|
|
|
|
- name: Run clippy manually without annotations
|
|
if: ${{ !steps.check_permissions.outputs.has-permission }}
|
|
run: cargo clippy --all-features --all-targets -- -D warnings
|
|
|
|
fmt:
|
|
name: Rustfmt
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3.5.2
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- uses: actions-rs/toolchain@v1.0.7
|
|
with:
|
|
toolchain: stable
|
|
components: rustfmt
|
|
override: true
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
- uses: actions-rs/cargo@v1.0.3
|
|
with:
|
|
command: fmt
|
|
args: --all -- --check
|
|
|
|
actionlint:
|
|
runs-on: ubuntu-latest
|
|
continue-on-error: true
|
|
steps:
|
|
- uses: actions/checkout@v3.5.2
|
|
- uses: reviewdog/action-actionlint@v1.37.0
|
|
with:
|
|
level: warning
|
|
fail_on_error: false
|