Skip to content

Commit

Permalink
chore(ci): fix format CI
Browse files Browse the repository at this point in the history
  • Loading branch information
carrascomj committed Apr 14, 2023
1 parent 6191551 commit d863aa1
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
run: |
cd ggshu
python -m pytest
# Run cargo fmt --all -- --check
format:
name: Format
Expand All @@ -60,8 +60,14 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
components: rustfmt
override: true
- name: Run cargo fmt
run: cargo fmt --all -- --check
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check

0 comments on commit d863aa1

Please sign in to comment.