Skip to content

Commit 17464f6

Browse files
authored
Merge pull request #10 from waterbustech/feat/unit-tests-v1
feat: unit tests v1
2 parents 477ae0c + 489eae3 commit 17464f6

File tree

38 files changed

+2475
-461
lines changed

38 files changed

+2475
-461
lines changed

.github/workflows/cargo.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,3 +71,20 @@ jobs:
7171
with:
7272
command: clippy
7373
args: --all-targets --all-features -- -D warnings
74+
75+
- name: 📦 Install nextest
76+
uses: taiki-e/install-action@v2
77+
with:
78+
tool: nextest
79+
80+
- name: 🧪 Run tests with nextest
81+
run: cargo nextest run --all-features
82+
83+
- name: 📦 Install cargo-udeps
84+
uses: actions-rs/cargo@v1
85+
with:
86+
command: install
87+
args: cargo-udeps
88+
89+
- name: 🔍 Check for unused dependencies
90+
run: cargo udeps

0 commit comments

Comments
 (0)