Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cham-s authored Nov 3, 2024
1 parent 1755069 commit a3bf095
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ on:
- 'main'

jobs:
macOS:

macOS-15:
runs-on: macos-15

steps:
Expand All @@ -22,3 +21,18 @@ jobs:
run: swift build -v
- name: Run tests
run: swift test -v

Ubuntu-latest:
strategy:
matrix:
swift:
- '6.0.2'
runs-on: ubuntu-latest
container: swift:${{ matrix.swift }}

steps:
- uses: actions/checkout@v4
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v

0 comments on commit a3bf095

Please sign in to comment.