From 86f67a767fad88b4b38796b1270f8057dad91fb2 Mon Sep 17 00:00:00 2001 From: Flavio Serrazes Date: Mon, 30 Jun 2025 10:51:22 +0200 Subject: [PATCH] chore: Update CI.yml --- .github/workflows/CI.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 3a8e514..45e0a91 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -9,17 +9,14 @@ on: jobs: lint: runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: SwiftLint uses: norio-nomura/action-swiftlint@3.2.0 build: runs-on: macos-latest - steps: - - uses: actions/checkout@v2 - - name: Build on iOS - run: swift build -Xswiftc "-sdk" -Xswiftc "`xcrun --sdk iphonesimulator --show-sdk-path`" -Xswiftc "-target" -Xswiftc "x86_64-apple-ios12.0-simulator" -v - + - uses: actions/checkout@v3 + - name: Build + run: xcodebuild clean build -scheme "RateKit" -destination "platform=iOS Simulator,name=iPhone 14,OS=16.0" -sdk iphonesimulator -derivedDataPath .build-ci