-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
11 additions
and
16 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ jobs: | |
name: Carthage | ||
runs-on: macos-13 | ||
steps: | ||
- uses: actions/checkout@v4.1.1 | ||
- uses: actions/checkout@v4 | ||
- uses: AckeeCZ/[email protected] | ||
- name: Build | ||
run: carthage build --no-skip-current --cache-builds --use-xcframeworks | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,14 +8,14 @@ jobs: | |
name: Swiftlint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4.1.1 | ||
- uses: actions/checkout@v4 | ||
- name: GitHub Action for SwiftLint | ||
uses: norio-nomura/[email protected] | ||
changelog: | ||
name: Changelog | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4.1.1 | ||
- uses: actions/checkout@v4 | ||
- name: Changelog Reminder | ||
uses: peterjgrainger/[email protected] | ||
with: | ||
|
@@ -26,7 +26,7 @@ jobs: | |
name: Podspec | ||
runs-on: macos-13 | ||
steps: | ||
- uses: actions/checkout@v4.1.1 | ||
- uses: actions/checkout@v4 | ||
- name: Install Bundler dependencies | ||
run: bundle install | ||
- name: Lint podspec | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ jobs: | |
name: Upload Carthage binary | ||
runs-on: macos-13 | ||
steps: | ||
- uses: actions/checkout@v4.1.1 | ||
- uses: actions/checkout@v4 | ||
- uses: AckeeCZ/[email protected] | ||
- name: Build | ||
run: carthage build --no-skip-current --cache-builds --use-xcframeworks | ||
|
@@ -33,7 +33,7 @@ jobs: | |
name: Push podspec to Cocoapods trunk | ||
runs-on: macos-13 | ||
steps: | ||
- uses: actions/checkout@v4.1.1 | ||
- uses: actions/checkout@v4 | ||
- uses: AckeeCZ/[email protected] | ||
- name: Install gems | ||
run: bundle install | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,26 +7,21 @@ jobs: | |
name: Run tests | ||
runs-on: macos-13 | ||
steps: | ||
- uses: actions/checkout@v4.1.1 | ||
- uses: actions/checkout@v4 | ||
- uses: AckeeCZ/[email protected] | ||
- name: Install yeetd | ||
run: | | ||
wget https://github.com/biscuitehh/yeetd/releases/download/1.0/yeetd-normal.pkg | ||
sudo installer -pkg yeetd-normal.pkg -target / | ||
yeetd & | ||
- name: Run iOS tests | ||
env: | ||
DEVICE: iPhone 15 Pro Max | ||
run: | | ||
xcrun simctl boot "$DEVICE" | ||
set -o pipefail && xcodebuild test -scheme ACKategories-iOS -resultBundlePath Tests-iOS.xcresult -sdk iphonesimulator -destination "platform=iOS Simulator,name=$DEVICE,OS=latest" ONLY_ACTIVE_ARCH=YES | xcpretty | ||
set -o pipefail && xcodebuild test -scheme ACKategories-iOS -resultBundlePath Tests-iOS.xcresult -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 15 Pro Max,OS=latest" ONLY_ACTIVE_ARCH=YES | xcpretty | ||
- uses: actions/upload-artifact@v3 | ||
if: failure() | ||
with: | ||
name: Tests-iOS.xcresult | ||
path: Tests-iOS.xcresult | ||
- name: Run macOS tests | ||
run: set -o pipefail && xcodebuild test -scheme ACKategoriesCore -resultBundlePath Tests-macOS.xcresult -destination 'platform=OS X,arch=x86_64' | xcpretty | ||
- uses: actions/upload-artifact@v3 | ||
if: failure() | ||
with: | ||
name: Tests-macOS.xcresult | ||
path: Tests-macOS.xcresult |