1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-11 09:49:29 +00:00
actix-web/.github/workflows/clippy-fmt.yml

40 lines
864 B
YAML
Raw Normal View History

2021-02-07 20:33:53 +00:00
name: Lint
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
2021-02-07 20:33:53 +00:00
fmt:
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
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
with:
2021-02-07 20:33:53 +00:00
toolchain: stable
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