We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19b82c5 commit 89fdb9cCopy full SHA for 89fdb9c
.github/workflows/ci.yml
@@ -28,7 +28,7 @@ jobs:
28
- name: Compile
29
run: cargo check --locked
30
- name: Test
31
- run: cargo nextest run
+ run: make test
32
33
lint:
34
runs-on: ubuntu-latest
@@ -39,6 +39,4 @@ jobs:
39
components: clippy, rustfmt
40
- uses: Swatinem/rust-cache@v2
41
- name: Run cargo clippy (deny warnings)
42
- run: cargo clippy --workspace --all-targets --all-features -- -D warnings
43
- - name: Run cargo fmt (check if all code is rustfmt-ed)
44
- run: cargo fmt --all --check
+ run: make lint
Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "maedic"
3
-version = "0.3.0"
+version = "0.4.0"
4
edition = "2024"
5
6
0 commit comments