fmt minimal

This commit is contained in:
Rob Ede 2021-02-24 02:51:44 +00:00
parent c9cb795a68
commit 6a39563967
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
1 changed files with 5 additions and 2 deletions

View File

@ -14,8 +14,10 @@ jobs:
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
components: rustfmt
- name: Check with rustfmt
override: true
- name: Rustfmt Check
uses: actions-rs/cargo@v1
with:
command: fmt
@ -30,9 +32,10 @@ jobs:
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
components: clippy
override: true
- name: Check with Clippy
- name: Clippy Check
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}