Skip to content

Commit 3da3955

Browse files
authored
Merge pull request #89 from onevcat/ci/swift-test
Add CI workflow for swift test
2 parents 3cbe8ae + 8cc491e commit 3da3955

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- master
8+
9+
jobs:
10+
test:
11+
runs-on: macos-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
- name: Swift Test
16+
run: swift test

0 commit comments

Comments
 (0)