Skip to content

Commit

Permalink
update GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
swhitty committed Nov 2, 2023
1 parent fe7b565 commit 30cb57f
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ on:
workflow_dispatch:

jobs:
xcode_14_3:
xcode_15_0_1:
runs-on: macos-13
env:
DEVELOPER_DIR: /Applications/Xcode_14.3.app/Contents/Developer
DEVELOPER_DIR: /Applications/Xcode_15.0.1.app/Contents/Developer
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -26,10 +26,10 @@ jobs:
with:
files: ./coverage_report.lcov

xcode_15_0:
xcode_14_3:
runs-on: macos-13
env:
DEVELOPER_DIR: /Applications/Xcode_15.0.app/Contents/Developer
DEVELOPER_DIR: /Applications/Xcode_14.3.app/Contents/Developer
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -40,9 +40,22 @@ jobs:
- name: Test
run: swift test --skip-build

linux:
linux_5.7:
runs-on: ubuntu-latest
container: swift:5.7
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Version
run: swift --version
- name: Build
run: swift build --build-tests
- name: Test
run: swift test --skip-build

linux_5.9:
runs-on: ubuntu-latest
container: swift:5.5
container: swift:5.9
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down

0 comments on commit 30cb57f

Please sign in to comment.