Skip to content

Commit dc3f3a3

Browse files
committed
Add GitHub workflow
1 parent cc3530d commit dc3f3a3

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
macos-test:
11+
runs-on: macos-latest
12+
13+
steps:
14+
- name: Check out code
15+
uses: actions/checkout@v4
16+
17+
- name: Run tests
18+
run: swift test --parallel

0 commit comments

Comments
 (0)