2021-02-07 20:33:53 +00:00
|
|
|
name: Lint
|
|
|
|
|
2020-07-21 23:28:33 +00:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types: [opened, synchronize, reopened]
|
|
|
|
|
|
|
|
jobs:
|
2021-02-07 20:33:53 +00:00
|
|
|
fmt:
|
2020-07-21 23:28:33 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
2021-02-07 20:33:53 +00:00
|
|
|
- name: Install Rust
|
|
|
|
uses: actions-rs/toolchain@v1
|
2020-07-21 23:28:33 +00:00
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
components: rustfmt
|
|
|
|
- name: Check with rustfmt
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: fmt
|
|
|
|
args: --all -- --check
|
|
|
|
|
2021-02-07 20:33:53 +00:00
|
|
|
clippy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Install Rust
|
|
|
|
uses: actions-rs/toolchain@v1
|
2020-07-21 23:28:33 +00:00
|
|
|
with:
|
2021-02-07 20:33:53 +00:00
|
|
|
toolchain: stable
|
2020-07-21 23:28:33 +00:00
|
|
|
components: clippy
|
|
|
|
override: true
|
|
|
|
- name: Check with Clippy
|
|
|
|
uses: actions-rs/clippy-check@v1
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
2021-06-23 19:47:17 +00:00
|
|
|
args: --workspace --all-features --tests
|