We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c4e5ee commit 2d692dcCopy full SHA for 2d692dc
.github/workflows/ci.yml
@@ -21,6 +21,12 @@ jobs:
21
override: true
22
components: rustfmt, clippy
23
24
+ - name: check
25
+ uses: actions-rs/cargo@v1
26
+ with:
27
+ command: check
28
+ args: --all-features --examples --tests
29
+
30
- name: build
31
uses: actions-rs/cargo@v1
32
with:
@@ -68,3 +74,22 @@ jobs:
68
74
69
75
- name: stop container
70
76
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
87
+ profile: minimal
88
+ toolchain: nightly
89
+ override: true
90
91
92
93
94
95
+ args: --all-features --examples --tests --benches
0 commit comments