Skip to content

Commit 68881c7

Browse files
committed
Add a GitHub build/test action
...
1 parent 35e2277 commit 68881c7

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/swift.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Swift
2+
3+
on:
4+
push:
5+
branches: [ develop ]
6+
pull_request:
7+
branches: [ develop ]
8+
schedule:
9+
- cron: "0 9 * * 1"
10+
11+
jobs:
12+
build:
13+
14+
runs-on: macos-latest
15+
16+
steps:
17+
- uses: actions/checkout@v2
18+
- name: Build
19+
run: swift build -v
20+
- name: Run tests
21+
run: swift test -v

0 commit comments

Comments
 (0)