Skip to content

Commit

Permalink
Split test stage
Browse files Browse the repository at this point in the history
  • Loading branch information
containerscrew committed Aug 20, 2024
1 parent e907ff9 commit 92c5fdf
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: cargo test --all-features

fmt:
name: Rustfmt Check
name: Fmt & lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -31,7 +31,11 @@ jobs:
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
components: rustfmt
components: rustfmt, clippy

- name: Rustfmt Check
uses: actions-rust-lang/rustfmt@v1
uses: actions-rust-lang/rustfmt@v1

- name: Lint
run: cargo clippy --all-features -- -D warnings

0 comments on commit 92c5fdf

Please sign in to comment.