8000 add no-upload build-only ci (#125) · kfix/ddcctl@8399906 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8399906

Browse files
authored
add no-upload build-only ci (#125)
1 parent 2b0fe3f commit 8399906

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/ci.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: CI
2+
on:
3+
push:
4+
branches: [main]
5+
pull_request:
6+
branches: [main]
7+
8+
jobs:
9+
macos_big_sur:
10+
runs-on: macos-11
11+
12+
strategy:
13+
matrix:
14+
xcode:
15+
- "13.2"
16+
17+
name: "macOS Big Sur (Xcode ${{ matrix.xcode }})"
18+
19+
steps:
20+
- name: Checkout
21+
uses: actions/checkout@v1
22+
- name: Build
23+
run: |
24+
make
25+
env:
26+
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer

0 commit comments

Comments
 (0)
0