Skip to content

Commit

Permalink
Add CI workflows for testing Linux (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
liamnichols authored Aug 2, 2022
1 parent 7ffbab3 commit fb2504e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,17 @@ jobs:
uses: actions/checkout@v3
- name: Run Tests
run: swift test
linux:
name: Linux (Swift ${{ matrix.swift }})
strategy:
fail-fast: false
matrix:
swift: ["5.5", "5.6"]
runs-on: ubuntu-latest
container: swift:${{ matrix.swift }}
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Run Tests
run: swift test

0 comments on commit fb2504e

Please # to comment.