tunnelkit/.github/workflows/test.yml

29 lines
528 B
YAML
Raw Normal View History

2021-11-28 18:35:36 +00:00
name: Unit Tests
on:
push:
branches:
- "master"
paths-ignore:
- "*.md"
pull_request:
types: [ opened, synchronize ]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
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
timeout-minutes: 5
steps:
2023-07-08 08:01:44 +00:00
- uses: actions/checkout@v3
- uses: maxim-lobanov/setup-xcode@v1
with:
2023-12-30 23:47:58 +00:00
xcode-version: '15.1'
- name: Run tests
run: |
swift test