diff --git a/.github/workflows/build_mac.yml b/.github/workflows/build_mac.yml new file mode 100644 index 000000000..3c4e4841f --- /dev/null +++ b/.github/workflows/build_mac.yml @@ -0,0 +1,23 @@ +name: macOS Build + +on: + push: + branches: + - master + pull_request: + + +jobs: + xcode: + runs-on: macos-11 + + steps: + - uses: actions/checkout@v2 + + - name: Install dependencies + run: brew install mingw-w64 + + - name: Build + run: make -j8 + + \ No newline at end of file