Skip to content

Commit

Permalink
github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
a-givertzman committed Sep 26, 2023
1 parent 3fc0886 commit 1ed94a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
toolchain: stable
override: true

- name: Static analisis
run: |
cargo check
# - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
# - run: cargo build --release
- name: Unit tests
Expand Down
1 change: 0 additions & 1 deletion src/tests/unit/switch_state_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@ fn test_stot_step_back() {
(1, ProcessState::Off),
(1, ProcessState::Off),
];
// let sequence = vec![0,0,1,1,2,2,5,0,6,0,6,7,7,7,6,6,6,5,2,7,2,1,1];
for (value, targetState) in testData {
switchState.add(value);
let state = switchState.state();
Expand Down

0 comments on commit 1ed94a1

Please sign in to comment.