Skip to content

Commit

Permalink
Split out lint job and increase test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
maneatingape committed Dec 27, 2024
1 parent fdc5132 commit 9d87289
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,25 @@ on:
branches: main

jobs:
build:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup install nightly --profile default
- run: rustup default nightly
- run: cargo fmt --check -- **/*.rs
- run: cargo clippy --tests --features frivolity -- --deny warnings
- run: cargo clippy --all-targets --all-features -- --deny warnings

test-stable:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup default 1.83
- run: cargo test

test-nightly:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup default nightly
- run: cargo test --features simd

0 comments on commit 9d87289

Please sign in to comment.