Skip to content

Commit 4cfbcff

Browse files
committed
Add GitHub Actions CI to ensure builds & tests succeed on Mac & Linux
1 parent 344ae2f commit 4cfbcff

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/main.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
test-linux:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v4
12+
13+
- name: Run tests
14+
run: swift test
15+
16+
test-macos:
17+
runs-on: macos-15
18+
19+
steps:
20+
- uses: actions/checkout@v4
21+
22+
- name: Run tests
23+
run: swift test

0 commit comments

Comments
 (0)