chore: update copyright year #537
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: iOS CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths: | |
- ".github/workflows/ios.yml" | |
- "ios/Approach/" | |
- "ios/ApproachIOS/" | |
- "ios/Approach.xcodeproj/" | |
- "ios/.swiftlint.yml" | |
concurrency: | |
group: ios-ci-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: android | |
steps: | |
- uses: actions/checkout@v4 | |
- name: SwiftLint | |
uses: norio-nomura/[email protected] | |
env: | |
WORKING_DIRECTORY: ios | |
# test: | |
# runs-on: macos-13 | |
# defaults: | |
# run: | |
# working-directory: ./ios | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Select Xcode 14.3 | |
# run: sudo xcode-select -s /Applications/Xcode_14.3.app | |
# - name: Run tests | |
# run: xcodebuild test -project Approach.xcodeproj -scheme Approach -destination 'platform=iOS Simulator,name=iPhone 14 Pro,OS=16.4' |