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
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,17 @@ jobs:
- uses: actions/checkout@v4
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_16.app
- name: Build
- name: Run Swift Tests
run: |
make test
make test-swift6
- name: Build for All Platforms
run: make build-all
- name: Test
run: make test

linux:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Test
- name: Run Swift Tests
run: make test
10 changes: 7 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ build:
done;

test:
swift test -c debug
swift test -c release
swift package clean
swift test

.PHONY: build-all build test
test-swift6:
swift package clean
swift test -Xswiftc -swift-version -Xswiftc 6

.PHONY: build-all build test test-swift6
12 changes: 6 additions & 6 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.