-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove local xcode project Remove unit test script
- Loading branch information
Showing
35 changed files
with
74 additions
and
1,149 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -5,6 +5,15 @@ jobs: | |
test: | ||
name: Testing SketchKit | ||
runs-on: macos-13 | ||
strategy: | ||
matrix: | ||
scheme: [ | ||
SketchKit | ||
] | ||
destination: [ | ||
'platform=iOS Simulator,name=iPhone 15 Pro,OS=17.0.1' | ||
] | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
@@ -31,9 +40,13 @@ jobs: | |
env: | ||
DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Running SketchKit Unit Tests | ||
run: exec ./.github/scripts/test_app.sh | ||
shell: bash | ||
- name: Test ${{ matrix.scheme }} on ${{ matrix.destination }} | ||
run: | | ||
xcodebuild -scheme ${{ matrix.scheme }} \ | ||
-sdk iphonesimulator \ | ||
-destination '${{ matrix.destination }}' \ | ||
-enableCodeCoverage YES \ | ||
test | xcpretty && exit ${PIPESTATUS[0]} | ||
- name: Upload coverage to Codecov | ||
uses: codecov/[email protected] | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.