Skip to content

Commit 2d692dc

Browse files
committed
Add step to check all the places
1 parent 2c4e5ee commit 2d692dc

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ jobs:
2121
override: true
2222
components: rustfmt, clippy
2323

24+
- name: check
25+
uses: actions-rs/cargo@v1
26+
with:
27+
command: check
28+
args: --all-features --examples --tests
29+
2430
- name: build
2531
uses: actions-rs/cargo@v1
2632
with:
@@ -68,3 +74,22 @@ jobs:
6874

6975
- name: stop container
7076
run: docker compose down
77+
78+
Bench:
79+
name: Benchmarks
80+
runs-on: ubuntu-latest
81+
steps:
82+
- uses: actions/checkout@v3
83+
84+
- name: Install toolchain
85+
uses: actions-rs/toolchain@v1
86+
with:
87+
profile: minimal
88+
toolchain: nightly
89+
override: true
90+
91+
- name: check
92+
uses: actions-rs/cargo@v1
93+
with:
94+
command: check
95+
args: --all-features --examples --tests --benches

0 commit comments

Comments
 (0)