Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@ jobs:
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_26.0.1.app
- name: Run Swift Tests
run: |
make test
make test-swift6
run: make test
- name: Build for All Platforms
run: make build-all

Expand Down
6 changes: 1 addition & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,7 @@ test:
swift package clean
swift test

test-swift6:
swift package clean
swift test -Xswiftc -swift-version -Xswiftc 6

build-swift:
swift build

.PHONY: build-all build test test-swift6 build-swift
.PHONY: build-all build test build-swift