Skip to content

Commit ef67d49

Browse files
committed
Use GitHub Actions for CI
1 parent fd11dda commit ef67d49

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/UnitTests.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: UnitTests
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
test_on_macos:
10+
runs-on: macos-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- name: Build
14+
run: swift build
15+
- name: Test
16+
run: swift test
17+
test_on_linux:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@v2
21+
- name: Build
22+
run: swift build
23+
- name: Test
24+
run: swift test

0 commit comments

Comments
 (0)