Skip to content

Commit

Permalink
Add step to check all the places
Browse files Browse the repository at this point in the history
  • Loading branch information
aleics committed Jan 27, 2025
1 parent 2c4e5ee commit 2d692dc
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ jobs:
override: true
components: rustfmt, clippy

- name: check
uses: actions-rs/cargo@v1
with:
command: check
args: --all-features --examples --tests

- name: build
uses: actions-rs/cargo@v1
with:
Expand Down Expand Up @@ -68,3 +74,22 @@ jobs:

- name: stop container
run: docker compose down

Bench:
name: Benchmarks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true

- name: check
uses: actions-rs/cargo@v1
with:
command: check
args: --all-features --examples --tests --benches

0 comments on commit 2d692dc

Please sign in to comment.