2020-07-19 23:18:00 +02:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types: [opened, synchronize, reopened]
|
2020-01-30 06:44:05 +01:00
|
|
|
|
2020-07-20 20:51:51 +02:00
|
|
|
name: Clippy and rustfmt Check
|
2020-01-30 06:44:05 +01:00
|
|
|
jobs:
|
|
|
|
clippy_check:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2020-07-20 20:51:51 +02:00
|
|
|
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
components: rustfmt
|
|
|
|
override: true
|
|
|
|
- name: Check with rustfmt
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: fmt
|
|
|
|
args: --all -- --check
|
|
|
|
|
2020-01-30 06:44:05 +01:00
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: nightly
|
|
|
|
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 }}
|
|
|
|
args: --all-features --all --tests
|