diff --git a/.github/workflows/windows.yml b/.github/workflows/build_and_test.yml similarity index 55% rename from .github/workflows/windows.yml rename to .github/workflows/build_and_test.yml index 88e329f..a603527 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/build_and_test.yml @@ -10,10 +10,8 @@ env: CARGO_TERM_COLOR: always jobs: - build: - + windows: runs-on: windows-latest - steps: - uses: actions/checkout@v3 - uses: ilammy/msvc-dev-cmd@v1 @@ -21,9 +19,23 @@ jobs: run: cargo install cxxbridge-cmd - name: install cargo-make run: cargo install cargo-make - - name: compile test + - name: Compile test run: cargo make build_test - name: Build run: cargo build --verbose - name: Run tests run: cargo test --verbose + macos: + runs-on: macOS-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