1 parent b35dcf2 commit 3fcada3Copy full SHA for 3fcada3
1 file changed
.github/workflows/ci.yml
@@ -28,13 +28,25 @@ jobs:
28
components: clippy
29
- run: cargo clippy -- -D warnings
30
31
- test:
32
- name: Unit & Mock Tests
+ test-ina238:
+ name: INA238 Tests
33
runs-on: ubuntu-latest
34
steps:
35
- uses: actions/checkout@v4
36
- uses: dtolnay/rust-toolchain@stable
37
- - run: cargo test --verbose
+ - run: cargo test --test tests_ina238 --verbose
38
+
39
+ # Optional Cleanup
40
+ - name: Remove artifacts from target
41
+ run: cargo clean --verbose
42
43
+ test-ina239:
44
+ name: INA239 Tests
45
+ runs-on: ubuntu-latest
46
+ steps:
47
+ - uses: actions/checkout@v4
48
+ - uses: dtolnay/rust-toolchain@stable
49
+ - run: cargo test --test tests_ina239 --verbose
50
51
# Optional Cleanup
52
- name: Remove artifacts from target
0 commit comments