Bump version to 2.7.6 #946
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: Test | |
on: [push, workflow_dispatch] | |
env: | |
SCHEME_NAME: 'EhPanda' | |
DEVELOPER_DIR: /Applications/Xcode_16.0.app | |
jobs: | |
Test: | |
runs-on: macos-15 | |
if: ${{ !contains(github.event.head_commit.message, '[skip test]') }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Show Xcode version | |
run: xcodebuild -version | |
- name: Run tests | |
run: xcodebuild clean test | |
-skipMacroValidation | |
-scheme ${{ env.SCHEME_NAME }} | |
-destination 'platform=iOS Simulator,name=iPhone 16 Pro' |