-
-
Notifications
You must be signed in to change notification settings - Fork 203
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #300 from AvdLee/spec-update-3.8.0
Update App Store Connect API version
- Loading branch information
Showing
85 changed files
with
7,956 additions
and
2,626 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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
paths-ignore: | ||
- "README.md" | ||
- "CODE_OF_CONDUCT.md" | ||
- ".editorconfig" | ||
- ".spi.yml" | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test: | ||
name: Test macOS | ||
runs-on: macOS-15 | ||
timeout-minutes: 30 | ||
env: | ||
DEVELOPER_DIR: /Applications/Xcode_16.2.app | ||
strategy: | ||
matrix: | ||
destination: | ||
- "platform=macOS" | ||
- "platform=macOS,variant=Mac Catalyst" | ||
- "platform=iOS Simulator,name=iPhone 16" | ||
- "platform=tvOS Simulator,name=Apple TV" | ||
- "platform=watchOS Simulator,name=Apple Watch Series 10 (42mm)" | ||
- "platform=visionOS Simulator,name=Apple Vision Pro" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Test platform ${{ matrix.destination }} | ||
run: set -o pipefail && xcodebuild -scheme AppStoreConnect-Swift-SDK -destination "${{ matrix.destination }}" test | xcbeautify | ||
|
||
linux_test: | ||
name: Test Linux | ||
runs-on: ubuntu-22.04 | ||
timeout-minutes: 30 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Swiftly | ||
uses: vapor/[email protected] | ||
with: | ||
toolchain: latest | ||
- name: Test | ||
run: swift test |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.