diff --git a/.github/workflows/macos-build.yml b/.github/workflows/macos-build.yml new file mode 100644 index 00000000..5d27d520 --- /dev/null +++ b/.github/workflows/macos-build.yml @@ -0,0 +1,23 @@ +name: macOS Latest Build +on: [push, pull_request] + +jobs: + build: + runs-on: macos-latest + + steps: + - name: Checkout the code + uses: actions/checkout@v2 + with: + submodules: recursive + + - name: Install Dependencies + run: >- + bash installdeps + + - name: Configure + run: >- + cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Debug + + - name: Build + run: ninja -C build