2021-03-22 12:46:02 +01:00
|
|
|
name: Lint
|
|
|
|
|
2020-07-19 23:18:00 +02:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types: [opened, synchronize, reopened]
|
2020-01-30 06:44:05 +01:00
|
|
|
|
|
|
|
jobs:
|
2021-03-22 12:46:02 +01:00
|
|
|
fmt:
|
2020-01-30 06:44:05 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2020-07-20 20:51:51 +02:00
|
|
|
|
2021-03-22 12:46:02 +01:00
|
|
|
- name: Install Rust
|
|
|
|
uses: actions-rs/toolchain@v1
|
2020-07-20 20:51:51 +02:00
|
|
|
with:
|
2022-03-29 12:46:13 +02:00
|
|
|
toolchain: nightly
|
2020-07-20 20:51:51 +02:00
|
|
|
components: rustfmt
|
|
|
|
- name: Check with rustfmt
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: fmt
|
|
|
|
args: --all -- --check
|
|
|
|
|
2021-03-22 12:46:02 +01:00
|
|
|
clippy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Install Rust
|
|
|
|
uses: actions-rs/toolchain@v1
|
2020-01-30 06:44:05 +01:00
|
|
|
with:
|
2021-03-22 12:46:02 +01:00
|
|
|
toolchain: stable
|
2020-01-30 06:44:05 +01:00
|
|
|
components: clippy
|
|
|
|
override: true
|
2020-07-20 20:51:51 +02:00
|
|
|
- name: Check with Clippy
|
|
|
|
uses: actions-rs/clippy-check@v1
|
2020-01-30 06:44:05 +01:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
2021-03-22 12:46:02 +01:00
|
|
|
args: --workspace --tests --all-features
|