Skip to content

Commit

Permalink
ci test
Browse files Browse the repository at this point in the history
  • Loading branch information
chaosprint committed Jun 21, 2024
1 parent 150fc50 commit 1884c83
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,13 @@ jobs:
fmt-and-clippy:
runs-on: ubuntu-latest

strategy:
matrix:
rust: [stable, beta, nightly]

steps:
- uses: actions/checkout@v2

- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
toolchain: stable
override: true

- name: Run formatter check
Expand All @@ -32,3 +28,7 @@ jobs:
- name: Run clippy
working-directory: rs
run: cargo clippy -- -D warnings

- name: Run tests
working-directory: rs
run: cargo test --workspace --all-targets --exclude wasm

0 comments on commit 1884c83

Please sign in to comment.