Skip to content

Bump actions/checkout from 6 to 7 #31

Bump actions/checkout from 6 to 7

Bump actions/checkout from 6 to 7 #31

Workflow file for this run

name: Swift
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v7
- name: Setup Xcode version
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "16.4"
- name: Build & Test for iOS
run: |
xcodebuild test \
-scheme SwiftUIInterfaceOrientation \
-destination "platform=iOS Simulator,OS=18.5,name=iPhone 16" \
-configuration Debug \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: SwiftLint
uses: norio-nomura/action-swiftlint@3.2.1
with:
args: --strict