Skip to content

Commit

Permalink
Testing on Ubuntu 22.04 and 20.04
Browse files Browse the repository at this point in the history
  • Loading branch information
FabrizioBrancati committed Apr 3, 2024
1 parent 7c13800 commit ff8d17d
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,16 @@ jobs:
image:
- "swift:5.10"
- "swift:5.9"
os:
- ubuntu-22.04
- ubuntu-20.04
name: Linux
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
container:
image: ${{ matrix.image }}
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v3
- name: Swift Version
run: swift --version
- name: Debug Build
Expand All @@ -28,11 +31,11 @@ jobs:
run: swift test -v -c debug --enable-test-discovery

macos:
name: MacOS
name: macOS
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v3
- name: Select Xcode
run: xcodes select 15.2
- name: Swift Version
Expand Down

0 comments on commit ff8d17d

Please sign in to comment.