Skip to content

Bump actions/checkout from 4 to 6 #8

Bump actions/checkout from 4 to 6

Bump actions/checkout from 4 to 6 #8

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@v6
- name: Setup Xcode version
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "16.1"
- name: Build & Test for iOS
run: |
xcodebuild test \
-scheme SwiftUIInterfaceOrientation \
-destination "platform=iOS Simulator,OS=18.1,name=iPhone 16" \
-configuration Debug \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: SwiftLint
uses: norio-nomura/action-swiftlint@3.2.1
with:
args: --strict