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
10 changes: 5 additions & 5 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,25 @@ jobs:
Lint:
runs-on: macos-15
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: SwiftFormat
run: swiftformat --lint --strict . --reporter github-actions-log
test-ubuntu-latest:
name: Test Swift ${{ matrix.swift }} Ubuntu Latest
strategy:
matrix:
swift: ["6.0.3", "6.1"]
swift: ["6.0.3", "6.1", "6.2"]
runs-on: ubuntu-latest
container: swift:${{ matrix.swift }}
steps:
- uses: actions/checkout@v4
- name: Run Tests
run: swift test -Xswiftc -warnings-as-errors -Xcc -Werror

Choose a reason for hiding this comment

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

Any particular reason for removing this? Are there new warnings now?

Choose a reason for hiding this comment

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

run: swift test -Xswiftc -warnings-as-errors
test-macos-15:
name: Test Swift ${{ matrix.swift }} macOS
strategy:
matrix:
swift: ["6.0.3", "6.1"]
swift: ["6.0.3", "6.1", "6.2"]
runs-on: macos-15
steps:
- uses: actions/checkout@v4
Expand All @@ -40,4 +40,4 @@ jobs:
- name: Run Tests
run: |
export PATH=${HOME}/.swiftly/bin:${PATH}
swift test -Xswiftc -warnings-as-errors -Xcc -Werror
swift test -Xswiftc -warnings-as-errors