mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-01-22 16:42:09 +00:00
c387b8ddfd
- Add links to EULA and privacy policy in the app description - Update copyright in metadata
31 lines
628 B
YAML
31 lines
628 B
YAML
name: SwiftPM Tests
|
|
|
|
on:
|
|
pull_request:
|
|
types: [ opened, synchronize ]
|
|
paths-ignore:
|
|
- "README.md"
|
|
- ".env.*"
|
|
- "**/*.md"
|
|
- "**/*.sh"
|
|
- "**/*.yml"
|
|
- "fastlane/**"
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
run_swift_tests:
|
|
name: Run SwiftPM tests
|
|
runs-on: macos-15
|
|
timeout-minutes: 10
|
|
steps:
|
|
- uses: passepartoutvpn/action-prepare-xcode-build@master
|
|
with:
|
|
access_token: ${{ secrets.ACCESS_TOKEN }}
|
|
- name: "Run tests"
|
|
run: |
|
|
cd Packages/App
|
|
swift test
|