resolved #210
Workflow file for this run
This file contains hidden or 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-ignore: | |
- develop | |
jobs: | |
build: | |
runs-on: macos-15 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Select Xcode 16 | |
run: sudo xcode-select -switch /Applications/Xcode_16.app | |
- name: Install SwiftLint | |
run: brew install swiftlint | |
- uses: xavierLowmiller/xcodegen-action@1.2.4 | |
with: | |
spec: project.yml | |
quiet: true | |
version: '2.17.0' | |
- name: Build | |
run: xcodebuild clean build -project EatHub.xcodeproj -scheme EatHub 'platform=iOS Simulator,name=iPhone 16,OS=18.0' | |
CODE_SIGNING_ALLOWED=NO | |
swiftlint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: GitHub Action for SwiftLint with --strict | |
uses: norio-nomura/action-swiftlint@3.2.1 | |
with: | |
args: --strict |