Skip to content

Commit 5f36e42

Browse files
committed
Add git action
1 parent 1769e94 commit 5f36e42

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/linux.yaml

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

0 commit comments

Comments
 (0)