Skip to content

Commit

Permalink
add no-upload build-only ci (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
kfix authored May 31, 2022
1 parent 2b0fe3f commit 8399906
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 8399906

Please sign in to comment.