Skip to content

Commit

Permalink
test swift 5.9 and 6
Browse files Browse the repository at this point in the history
  • Loading branch information
jagreenwood committed Dec 4, 2024
1 parent 91e1920 commit f02ca3e
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Unit Test
name: Test Swift 5.9

on:
push:
Expand All @@ -8,7 +8,7 @@ on:

jobs:
build:

container: swift:5.9
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/swift-6.0.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Test Swift 6.0

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
container: swift:6.0
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v

0 comments on commit f02ca3e

Please sign in to comment.