Skip to content

Commit

Permalink
feat: test and improve spuz_piston (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
LIMPIX31 authored May 21, 2024
1 parent 743e316 commit bd8e459
Show file tree
Hide file tree
Showing 777 changed files with 2,829 additions and 461 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,18 +34,22 @@ jobs:

clippy:
name: '⚠️ Clippy'
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]

runs-on: ${{ matrix.platform }}
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
if: matrix.platform == 'ubuntu-latest'
- uses: Swatinem/rust-cache@v2
- run: cargo clippy --all-targets --all-features -- -D warnings

test:
name: '🚦 Test'
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: cargo test
Loading

0 comments on commit bd8e459

Please sign in to comment.