mirror of
https://github.com/maxgoedjen/secretive.git
synced 2024-11-22 05:27:28 +00:00
409efa5f9f
* Test running on XL (does this work for OSS projects?) * Move over test/release
18 lines
382 B
YAML
18 lines
382 B
YAML
name: Test
|
|
|
|
on: [push, pull_request]
|
|
jobs:
|
|
test:
|
|
# runs-on: macOS-latest-xlarge
|
|
runs-on: macos-13-xlarge
|
|
timeout-minutes: 10
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set Environment
|
|
run: sudo xcrun xcode-select -s /Applications/Xcode_15.2.app
|
|
- name: Test
|
|
run: |
|
|
pushd Sources/Packages
|
|
swift test
|
|
popd
|