|
@@ -1,4 +1,3 @@
|
|
-
|
|
|
|
on:
|
|
on:
|
|
push:
|
|
push:
|
|
branches: [ staging, trying, master ]
|
|
branches: [ staging, trying, master ]
|
|
@@ -9,16 +8,11 @@ name: Code formatting check
|
|
jobs:
|
|
jobs:
|
|
fmt:
|
|
fmt:
|
|
name: Rustfmt
|
|
name: Rustfmt
|
|
- runs-on: ubuntu-20.04
|
|
|
|
|
|
+ runs-on: ubuntu-latest
|
|
steps:
|
|
steps:
|
|
- - uses: actions/checkout@v2
|
|
|
|
- - uses: actions-rs/toolchain@v1
|
|
|
|
|
|
+ - uses: actions/checkout@v3
|
|
|
|
+ - uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
with:
|
|
- profile: minimal
|
|
|
|
- toolchain: stable
|
|
|
|
- override: true
|
|
|
|
components: rustfmt
|
|
components: rustfmt
|
|
- - uses: actions-rs/cargo@v1
|
|
|
|
- with:
|
|
|
|
- command: fmt
|
|
|
|
- args: --all -- --check
|
|
|
|
|
|
+ - name: Run Rustfmt
|
|
|
|
+ run: cargo fmt --all -- --check --verbose
|