You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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 |
|
|
|
|