mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-01-11 19:19:18 +00:00
115f54edbd
Features Xcode 13.3.1, consistent with local development. Maybe works around accent color bug.
31 lines
621 B
YAML
31 lines
621 B
YAML
name: Unit Tests
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- 'master' # temporary
|
|
- 'test/*'
|
|
paths-ignore:
|
|
- '.beta-*'
|
|
- 'Passepartout.xcodeproj/project.pbxproj'
|
|
- '**/Info.plist'
|
|
- '**/CHANGELOG.md'
|
|
- '**/release_notes.txt'
|
|
|
|
jobs:
|
|
run_tests:
|
|
name: Run tests
|
|
runs-on: macos-12
|
|
timeout-minutes: 20
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
- uses: maxim-lobanov/setup-xcode@v1
|
|
with:
|
|
xcode-version: latest-stable
|
|
- name: Run tests
|
|
run: |
|
|
cd PassepartoutCore
|
|
swift test
|