Skip to content

Commit

Permalink
chore(actions): add memchr and bench tests to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jbr committed Feb 1, 2024
1 parent 41b4997 commit ca80981
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,18 @@ jobs:
command: test
args: --all --no-fail-fast

- name: Run tests (memchr)
uses: actions-rs/cargo@v1
with:
command: test
args: --all --no-fail-fast --features memchr

- name: Run tests (bench)
uses: actions-rs/cargo@v1
with:
command: test
args: --bench bench

check_fmt_and_docs:
name: Lints and Docs
runs-on: ubuntu-latest
Expand All @@ -45,10 +57,9 @@ jobs:
components: rustfmt, clippy
override: true

- uses: actions-rs/clippy-check@v1
- uses: giraffate/clippy-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
reporter: 'github-pr-review'

- name: Format
run: cargo fmt --all -- --check
Expand Down

0 comments on commit ca80981

Please sign in to comment.