From 8399906acf7393d3d3ffb033436aecae36be5cc8 Mon Sep 17 00:00:00 2001 From: Joey Korkames Date: Mon, 30 May 2022 17:55:40 -0700 Subject: [PATCH] add no-upload build-only ci (#125) --- .github/workflows/ci.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..0405a11 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,26 @@ +name: CI +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + macos_big_sur: + runs-on: macos-11 + + strategy: + matrix: + xcode: + - "13.2" + + name: "macOS Big Sur (Xcode ${{ matrix.xcode }})" + + steps: + - name: Checkout + uses: actions/checkout@v1 + - name: Build + run: | + make + env: + DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer