mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-08-19 11:40:56 +00:00
* Switch to string symbols * Names * Cleanup packages * Cleanup packages * Remove namespace * More cleanup * Fix extra param. * Use swiftbuild
15 lines
367 B
YAML
15 lines
367 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_beta_5.app
|
|
- name: Test
|
|
run: swift build --build-system swiftbuild --package-path Sources/Packages
|