Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ on:
branches:
- main
paths-ignore:
- 'README.md'
- 'CODE_OF_CONDUCT.md'
- '.editorconfig'
- '.spi.yml'
- "README.md"
- "CODE_OF_CONDUCT.md"
- ".editorconfig"
- ".spi.yml"
pull_request:
branches:
- main
Expand Down Expand Up @@ -40,20 +40,20 @@ jobs:

linux_test:
name: Test Linux
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
container:
image: swift:${{matrix.swift-version}}
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
swift-version:
- 6.1
- 6.2
- latest
- "6.1"
- "6.2"
- "latest"
Comment on lines +51 to +53

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Quoting here is actually recommended, since someone unknowningly adding 6.0 or similar would end up with the tests running on swift 6 due to yaml's handling of float values.

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Swiftly
uses: vapor/swiftly-action@v0.2.0
with:
toolchain: ${{ matrix.swift-version }}
- run: swift --version
- name: Test
run: swift test
Loading