diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 46ea0c57..37eab1d0 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -18,9 +18,12 @@ jobs: # - uses: actions-rs/toolchain@v1 # with: # toolchain: stable - - name: Build + - name: Test run: | - cargo --version && rustc --version && cargo build + python3 ./caiman-test/test.py run + # - name: Build + # run: | + # cargo --version && rustc --version && cargo build - name: Format run: cargo fmt --check - name: Clippy @@ -28,6 +31,3 @@ jobs: with: command: clippy args: -- -D clippy::suspicious -W clippy::all -D clippy::correctness - - name: Test - run: | - python3 ./caiman-test/test.py run