mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-08-27 07:30:57 +00:00
* Change build command to run tests instead of build * Change build command to test in release workflow * Add root test
17 lines
458 B
YAML
17 lines
458 B
YAML
name: Test
|
|
|
|
on: [push, pull_request]
|
|
jobs:
|
|
test:
|
|
# runs-on: macOS-latest
|
|
runs-on: macos-15
|
|
timeout-minutes: 10
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: Set Environment
|
|
run: sudo xcrun xcode-select -s /Applications/Xcode_26.0.app
|
|
- name: Test Main Packages
|
|
run: swift test --build-system swiftbuild --package-path Sources/Packages
|
|
- name: Test SecretKit Packages
|
|
run: swift test --build-system swiftbuild
|