-
Notifications
You must be signed in to change notification settings - Fork 99
48 lines (43 loc) · 1.05 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '*'
workflow_dispatch:
jobs:
# temporary
# library:
# name: Library
# runs-on: macos-14
# steps:
# - uses: actions/checkout@v4
# - name: Select Xcode 15.4
# run: sudo xcode-select -s /Applications/Xcode_15.4.app
# - name: Run tests
# run: make test
# # - name: Build for library evolution
# # run: make build-for-library-evolution
# windows:
# name: Windows
# strategy:
# matrix:
# os: [windows-latest]
# config: ['debug', 'release']
# runs-on: ${{ matrix.os }}
# steps:
# - uses: compnerd/gha-setup-swift@main
# with:
# branch: swift-5.10-release
# tag: 5.10-RELEASE
# - uses: actions/checkout@v4
# - name: Run tests
# run: swift test -c ${{ matrix.config }}
android:
name: Android (Swift 6.0.2)
runs-on: ubuntu-22.04
steps:
- name: Test on Android
uses: johankool/swift-android-test-action@v1