Skip to content

Commit a6d6cd6

Browse files
feature: Adds github test CI
1 parent 8980208 commit a6d6cd6

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

Diff for: .github/workflows/test.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: test
2+
on:
3+
pull_request:
4+
push: { branches: [ main ] }
5+
6+
jobs:
7+
test:
8+
strategy:
9+
matrix:
10+
os: [ubuntu-latest, macos-latest]
11+
runs-on: ${{ matrix.os }}
12+
steps:
13+
- uses: fwal/setup-swift@v1
14+
- uses: actions/checkout@v2
15+
- name: Run tests
16+
run: swift test

0 commit comments

Comments
 (0)