mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-09-09 05:50:57 +00:00
* Add codeql workflow * Disable signing on codeql workflow Updated build command to disable code signing. * Archive * Temporarily disable previews * Try disabling hardening * Release mode * Previews * Temporarily disable. * Update xcodebuild command in codeql.yml * Try swift build output * Fix * Revert "Fix" This reverts commit064172779a
. * Revert "Try swift build output" This reverts commita3aa982223
. * Reset most stuff back to main * Cleanup workflows and limit a few jobs to read. * .
18 lines
470 B
YAML
18 lines
470 B
YAML
name: Test
|
|
|
|
on: [push, pull_request]
|
|
jobs:
|
|
test:
|
|
permissions:
|
|
contents: read
|
|
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
|