1
0
spogulis no https://github.com/maxgoedjen/secretive.git synced 2025-12-30 21:38:51 +01:00

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
Šī revīzija ir iekļauta:
Max Goedjen 2025-08-23 20:52:34 -07:00 revīziju iesūtīja GitHub
vecāks b815c1e5ad
revīzija 5067f05558
Šim parakstam datu bāzē netika atrasta zināma atslēga
GPG atslēgas ID: B5690EEEBB952194
2 mainīti faili ar 5 papildinājumiem un 3 dzēšanām

Parādīt failu

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

Parādīt failu

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