Run test not just build (#624)

* Change build command to run tests instead of build

* Change build command to test in release workflow

* Add root test
This commit is contained in:
Max Goedjen 2025-08-23 20:52:34 -07:00 committed by GitHub
parent b815c1e5ad
commit 5067f05558
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 3 deletions

View File

@ -23,7 +23,7 @@ jobs:
- name: Set Environment
run: sudo xcrun xcode-select -s /Applications/Xcode_26.0.app
- name: Test
run: swift build --build-system swiftbuild --package-path Sources/Packages
run: swift test --build-system swiftbuild --package-path Sources/Packages
build:
# runs-on: macOS-latest
runs-on: macos-15

View File

@ -10,5 +10,7 @@ jobs:
- uses: actions/checkout@v5
- name: Set Environment
run: sudo xcrun xcode-select -s /Applications/Xcode_26.0.app
- name: Test
run: swift build --build-system swiftbuild --package-path Sources/Packages
- name: Test Main Packages
run: swift test --build-system swiftbuild --package-path Sources/Packages
- name: Test SecretKit Packages
run: swift test --build-system swiftbuild