Skip to content

Commit 82622bc

Browse files
committed
Try this
1 parent fd27e74 commit 82622bc

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

.github/workflows/tests.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Tests
2+
3+
on:
4+
push
5+
6+
jobs:
7+
macos-tests:
8+
runs-on: macos-latest
9+
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v4
13+
with:
14+
fetch-depth: 0
15+
16+
- name: Setup Swift
17+
uses: SwiftyLab/setup-swift@latest
18+
19+
- name: Run Swift tests
20+
run: swift test
21+
22+
android-tests:
23+
runs-on: ubuntu-latest
24+
25+
steps:
26+
- name: Checkout
27+
uses: actions/checkout@v4
28+
with:
29+
fetch-depth: 0
30+
31+
- name: Run tests
32+
uses: skiptools/swift-android-action@v2

0 commit comments

Comments
 (0)