Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jamjamjon committed Apr 14, 2024
1 parent 51b75e9 commit a4088a3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/rust-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: check
args: --workspace --examples
args: --examples

test:
name: Test Suite
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
os: [ubuntu-latest, macOS-latest, windows-latest]
rust: [stable]
steps:
- uses: actions/checkout@v2
Expand All @@ -43,7 +43,7 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: test
args: --workspace --examples
args: --examples

fmt:
name: Rustfmt
Expand Down Expand Up @@ -75,4 +75,4 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --workspace --tests --examples --all-targets --all-features -- -Dwarnings
args: --examples --all-targets --all-features -- -Dwarnings

0 comments on commit a4088a3

Please sign in to comment.