Skip to content

Commit 03e33d8

Browse files
authored
Create test.yml
1 parent 9320879 commit 03e33d8

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/test.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: test workflow
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
build:
11+
name: Test
12+
runs-on: macos-latest
13+
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
- name: Test
18+
run: |
19+
xcodebuild -scheme GitClient -destination "platform=macOS" clean test

0 commit comments

Comments
 (0)