Delete remote profiles on local removal #384
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit Tests | |
on: | |
pull_request: | |
types: [ opened, synchronize ] | |
paths-ignore: | |
- '.env.*' | |
- '**/*.md' | |
- '**/*.sh' | |
- '**/*.yml' | |
- 'fastlane/**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
run_tests: | |
name: Run tests | |
runs-on: macos-14 | |
timeout-minutes: 15 | |
steps: | |
- uses: passepartoutvpn/action-prepare-xcode-build@master | |
with: | |
access_token: ${{ secrets.ACCESS_TOKEN }} | |
- name: Run tests | |
run: | | |
cd Passepartout/Library | |
swift test |