secretive/.github/workflows/test.yml

18 lines
368 B
YAML
Raw Permalink Normal View History

name: Test
on: [push, pull_request]
jobs:
test:
# runs-on: macOS-latest
runs-on: macos-13
timeout-minutes: 10
steps:
2023-12-12 22:30:06 +00:00
- uses: actions/checkout@v4
2020-04-05 23:05:45 +00:00
- name: Set Environment
2024-01-16 21:39:07 +00:00
run: sudo xcrun xcode-select -s /Applications/Xcode_15.2.app
- name: Test
run: |
pushd Sources/Packages
swift test
popd