mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-22 22:46:39 +01:00
Move fmtcheck down
This commit is contained in:
parent
a4d6673a91
commit
5ef8565509
1 changed files with 7 additions and 7 deletions
14
.github/workflows/ci.yml
vendored
14
.github/workflows/ci.yml
vendored
|
@ -50,13 +50,6 @@ jobs:
|
||||||
command: test
|
command: test
|
||||||
args: --verbose --all-features
|
args: --verbose --all-features
|
||||||
|
|
||||||
- name: fmt
|
|
||||||
uses: actions-rs/cargo@v1
|
|
||||||
if: matrix.rust == 'nightly'
|
|
||||||
with:
|
|
||||||
command: fmt
|
|
||||||
args: --all -- --check
|
|
||||||
|
|
||||||
- name: stable/beta clippy
|
- name: stable/beta clippy
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
if: matrix.rust == 'stable' || matrix.rust == 'beta'
|
if: matrix.rust == 'stable' || matrix.rust == 'beta'
|
||||||
|
@ -70,3 +63,10 @@ jobs:
|
||||||
with:
|
with:
|
||||||
command: clippy
|
command: clippy
|
||||||
args: --all-targets --all-features -- -D warnings
|
args: --all-targets --all-features -- -D warnings
|
||||||
|
|
||||||
|
- name: fmt
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
|
if: matrix.rust == 'nightly'
|
||||||
|
with:
|
||||||
|
command: fmt
|
||||||
|
args: --all -- --check
|
||||||
|
|
Loading…
Reference in a new issue