mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2024-12-24 18:32:36 +00:00
1532e8808b
- Skip tests until fixed wg-go issue - Add golang step - Set "Apple Development" at project level - Set Catalyst platform for gym - Drop TARGET env variable clashing with WireGuardKit - Disable SwiftGen script phase - Fix TunnelKit segfault on archive - Xcode 13.2.1 compatibility Fix some issues with @MainActor Use #available instead of #unavailable - Raise timeout from 10 to 15 minutes - Update beta description - Tunnel bundle ids cannot have periods - CFBundleDisplayName required in tunnels
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-11
|
|
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
|