Skip to content
This repository was archived by the owner on Dec 27, 2020. It is now read-only.

Commit ed62084

Browse files
authored
Create swift.yml
1 parent c975e93 commit ed62084

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/swift.yml

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

0 commit comments

Comments
 (0)