2021-11-28 18:35:36 +00:00
|
|
|
name: Unit Tests
|
2021-11-28 15:11:18 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-12-02 14:40:38 +00:00
|
|
|
- "master"
|
|
|
|
paths-ignore:
|
|
|
|
- "*.md"
|
2022-11-06 16:46:10 +00:00
|
|
|
pull_request:
|
|
|
|
types: [ opened, synchronize ]
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.ref }}
|
|
|
|
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
|
2021-11-28 15:11:18 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
run_tests:
|
2022-01-04 08:27:57 +00:00
|
|
|
name: Run tests
|
2023-12-30 23:47:58 +00:00
|
|
|
runs-on: macos-13
|
2022-11-06 16:46:10 +00:00
|
|
|
timeout-minutes: 5
|
2021-11-28 15:11:18 +00:00
|
|
|
steps:
|
2023-07-08 08:01:44 +00:00
|
|
|
- uses: actions/checkout@v3
|
2021-11-28 15:11:18 +00:00
|
|
|
- uses: maxim-lobanov/setup-xcode@v1
|
|
|
|
with:
|
2023-12-30 23:47:58 +00:00
|
|
|
xcode-version: '15.1'
|
2021-11-28 15:11:18 +00:00
|
|
|
- name: Run tests
|
|
|
|
run: |
|
|
|
|
swift test
|