diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index e69559ea..31080ba7 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -8,7 +8,7 @@ on: branches: [main] jobs: - check: + linux-check: runs-on: ubuntu-latest steps: @@ -46,4 +46,17 @@ jobs: run: ninja -C build - name: Test run: ctest --test-dir build --output-on-failure --timeout 30 + darwin-arm64-check: + needs: prepare + runs-on: macos-14-arm64 + steps: + - uses: actions/checkout@v3 + with: + ref: ${{ github.head_ref }} + - name: Debug Build + shell: bash + run: make + - name: Debug Test + shell: bash + run: ctest --test-dir build-Debug --output-on-failure --timeout 30