2020-03-16 00:04:20 +00:00
|
|
|
name: Test
|
|
|
|
|
2020-07-12 22:12:18 +00:00
|
|
|
on: [push, pull_request]
|
2020-03-16 00:04:20 +00:00
|
|
|
jobs:
|
|
|
|
test:
|
2020-11-11 23:32:28 +00:00
|
|
|
runs-on: macos-11.0
|
2020-03-16 00:04:20 +00:00
|
|
|
timeout-minutes: 10
|
|
|
|
steps:
|
2020-10-13 03:48:51 +00:00
|
|
|
- uses: actions/checkout@v2
|
2020-04-05 23:05:45 +00:00
|
|
|
- name: Set Environment
|
2021-12-24 21:55:26 +00:00
|
|
|
run: sudo xcrun xcode-select -s /Applications/Xcode_13.2.1.app
|
2020-03-16 00:04:20 +00:00
|
|
|
- name: Test
|
2022-01-02 00:43:29 +00:00
|
|
|
run: |
|
|
|
|
pushd Sources/Packages
|
|
|
|
swift test
|
|
|
|
popd
|