Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Update actions/checkout to v4 #83

Merged
merged 1 commit into from
Nov 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,38 +14,38 @@ jobs:
env:
DEVELOPER_DIR: /Applications/Xcode_15.0.1.app
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Test
run: xcodebuild test -scheme "Zen Tuner" -destination platform="iOS Simulator,name=iPhone 15 Pro Max,OS=17.0.1"
test_packages:
runs-on: macos-13
env:
DEVELOPER_DIR: /Applications/Xcode_15.0.1.app
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Test
run: swift test --package-path Packages/MicrophonePitchDetector
macos:
runs-on: macos-13
env:
DEVELOPER_DIR: /Applications/Xcode_15.0.1.app
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build macOS
run: xcodebuild build -scheme "Zen Tuner" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
watchos:
runs-on: macos-13
env:
DEVELOPER_DIR: /Applications/Xcode_15.0.1.app
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build watchOS
run: xcodebuild build -scheme "ZenTuner_watchOS" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
lint:
runs-on: ubuntu-22.04
container:
image: ghcr.io/realm/swiftlint:0.53.0
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run SwiftLint
run: swiftlint lint --strict