Skip to content

Commit 14b1266

Browse files
committed
update GitHub Actions
1 parent fe7b565 commit 14b1266

File tree

1 file changed

+19
-6
lines changed

1 file changed

+19
-6
lines changed

.github/workflows/build.yml

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ on:
66
workflow_dispatch:
77

88
jobs:
9-
xcode_14_3:
9+
xcode_15_0_1:
1010
runs-on: macos-13
1111
env:
12-
DEVELOPER_DIR: /Applications/Xcode_14.3.app/Contents/Developer
12+
DEVELOPER_DIR: /Applications/Xcode_15.0.1.app/Contents/Developer
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v3
@@ -26,10 +26,10 @@ jobs:
2626
with:
2727
files: ./coverage_report.lcov
2828

29-
xcode_15_0:
29+
xcode_14_3:
3030
runs-on: macos-13
3131
env:
32-
DEVELOPER_DIR: /Applications/Xcode_15.0.app/Contents/Developer
32+
DEVELOPER_DIR: /Applications/Xcode_14.3.app/Contents/Developer
3333
steps:
3434
- name: Checkout
3535
uses: actions/checkout@v3
@@ -40,9 +40,22 @@ jobs:
4040
- name: Test
4141
run: swift test --skip-build
4242

43-
linux:
43+
linux_5_7:
44+
runs-on: ubuntu-latest
45+
container: swift:5.7
46+
steps:
47+
- name: Checkout
48+
uses: actions/checkout@v2
49+
- name: Version
50+
run: swift --version
51+
- name: Build
52+
run: swift build --build-tests
53+
- name: Test
54+
run: swift test --skip-build
55+
56+
linux_5_9:
4457
runs-on: ubuntu-latest
45-
container: swift:5.5
58+
container: swift:5.9
4659
steps:
4760
- name: Checkout
4861
uses: actions/checkout@v2

0 commit comments

Comments
 (0)