diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index a603527..27725f2 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -39,3 +39,17 @@ jobs: run: cargo build --verbose # - name: Run tests # run: cargo test --verbose + linux: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: install cxxbridge + run: cargo install cxxbridge-cmd + - name: install cargo-make + run: cargo install cargo-make + - name: Compile test + run: cargo make build_test + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose