Skip to content

Commit e277334

Browse files
committed
Added GitHub action to run tests
1 parent 60cba4b commit e277334

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/linux.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: "Run Tests on Linux"
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: fwal/[email protected]
14+
- uses: actions/checkout@v2
15+
with:
16+
submodules: true
17+
- name: Show Swift Version
18+
run: swift --version
19+
- name: Build
20+
run: swift build
21+
- name: Test
22+
run: swift test

0 commit comments

Comments
 (0)