Skip to content

Commit

Permalink
Also build for Linux #3
Browse files Browse the repository at this point in the history
  • Loading branch information
odrobnik committed Mar 7, 2025
1 parent 1e56fae commit a29b91a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,23 @@ jobs:

- name: Run tests
run: swift test -v

build-linux:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup Swift 6.0
uses: swift-actions/setup-swift@v2.2.0
with:
swift-version: "6.0"

- name: Verify Swift version
run: swift --version

- name: Build
run: swift build -v

- name: Run tests
run: swift test -v

0 comments on commit a29b91a

Please sign in to comment.