Skip to content

Commit

Permalink
ci: check formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
StackDoubleFlow committed Dec 14, 2023
1 parent 1dfc8e8 commit 955cf8d
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,15 @@ jobs:
with:
toolchain: stable
- uses: Swatinem/rust-cache@v1

- name: Build
run: cargo test --verbose
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose

- name: Check formatting
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check

0 comments on commit 955cf8d

Please sign in to comment.