Version 0 is a valid emoji version, so should be included. #81
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: Swift | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
jobs: | |
build: | |
name: Validate Swift | |
runs-on: macos-12 | |
concurrency: | |
# When running on main, use the sha to allow all runs of this workflow to run concurrently. | |
# Otherwise only allow a single run of this workflow on each branch, automatically cancelling older runs. | |
group: ${{ github.workflow }} | |
cancel-in-progress: ${{ github.ref_name != 'main' }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set XCode 14.2 | |
run: sudo xcode-select -switch /Applications/Xcode_14.2.app | |
- name: Tests | |
run: exec ./platforms/ios/ios-tests.sh |