Skip to content

Commit 72c8a8c

Browse files
authored
Added GitHub Workflow
1 parent da0f658 commit 72c8a8c

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/swift.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Swift
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
build:
8+
9+
runs-on: macos-latest
10+
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: Build
14+
run: swift build -v
15+
- name: Run tests
16+
run: swift test -v

0 commit comments

Comments
 (0)