Skip to content

Commit 9bece1a

Browse files
authored
Merge pull request #2 from XcodesOrg/test-actions
add test actions
2 parents 0148c4d + 8b62c96 commit 9bece1a

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/test.yml

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

0 commit comments

Comments
 (0)