-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat-refreshable-crypto-list
- Loading branch information
Showing
5 changed files
with
140 additions
and
5 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,6 @@ on: | |
|
||
env: | ||
SCHEME: CryptoWidgetKitApp | ||
TEST_SCHEME: CryptoWidgetKitAppTests | ||
SIMULATOR: "iPhone 15" | ||
|
||
jobs: | ||
|
@@ -20,8 +19,8 @@ jobs: | |
fail-fast: true | ||
matrix: | ||
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md#installed-simulators | ||
xcode_version: [ "15.0.1", "15.4" ] | ||
os_version: [ "17.0.1", "17.5" ] | ||
xcode_version: [ "15.4" ] | ||
os_version: [ "17.0.1"] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
@@ -39,6 +38,11 @@ jobs: | |
- name: Test | ||
run: | | ||
xcodebuild \ | ||
-scheme "$TEST_SCHEME" \ | ||
-scheme "$SCHEME" \ | ||
-destination "platform=iOS Simulator,name=${SIMULATOR},OS=${{ matrix.os_version }}" \ | ||
test | ||
-enableCodeCoverage YES \ | ||
test | ||
- name: Upload coverage reports to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} |
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
95 changes: 95 additions & 0 deletions
95
CryptoWidgetKitApp.xcodeproj/xcshareddata/xcschemes/CryptoWidgetKitApp.xcscheme
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,95 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Scheme | ||
LastUpgradeVersion = "1540" | ||
version = "1.7"> | ||
<BuildAction | ||
parallelizeBuildables = "YES" | ||
buildImplicitDependencies = "YES" | ||
buildArchitectures = "Automatic"> | ||
<BuildActionEntries> | ||
<BuildActionEntry | ||
buildForTesting = "YES" | ||
buildForRunning = "YES" | ||
buildForProfiling = "YES" | ||
buildForArchiving = "YES" | ||
buildForAnalyzing = "YES"> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "4D7266452C049D800035E348" | ||
BuildableName = "CryptoWidgetKitApp.app" | ||
BlueprintName = "CryptoWidgetKitApp" | ||
ReferencedContainer = "container:CryptoWidgetKitApp.xcodeproj"> | ||
</BuildableReference> | ||
</BuildActionEntry> | ||
</BuildActionEntries> | ||
</BuildAction> | ||
<TestAction | ||
buildConfiguration = "Debug" | ||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | ||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | ||
shouldUseLaunchSchemeArgsEnv = "YES"> | ||
<TestPlans> | ||
<TestPlanReference | ||
reference = "container:CryptoWidgetKitAppTests/CryptoWidgetKitApp.xctestplan" | ||
default = "YES"> | ||
</TestPlanReference> | ||
</TestPlans> | ||
<Testables> | ||
<TestableReference | ||
skipped = "NO"> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "4D7266552C049D820035E348" | ||
BuildableName = "CryptoWidgetKitAppTests.xctest" | ||
BlueprintName = "CryptoWidgetKitAppTests" | ||
ReferencedContainer = "container:CryptoWidgetKitApp.xcodeproj"> | ||
</BuildableReference> | ||
</TestableReference> | ||
</Testables> | ||
</TestAction> | ||
<LaunchAction | ||
buildConfiguration = "Debug" | ||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | ||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | ||
launchStyle = "0" | ||
useCustomWorkingDirectory = "NO" | ||
ignoresPersistentStateOnLaunch = "NO" | ||
debugDocumentVersioning = "YES" | ||
debugServiceExtension = "internal" | ||
allowLocationSimulation = "YES"> | ||
<BuildableProductRunnable | ||
runnableDebuggingMode = "0"> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "4D7266452C049D800035E348" | ||
BuildableName = "CryptoWidgetKitApp.app" | ||
BlueprintName = "CryptoWidgetKitApp" | ||
ReferencedContainer = "container:CryptoWidgetKitApp.xcodeproj"> | ||
</BuildableReference> | ||
</BuildableProductRunnable> | ||
</LaunchAction> | ||
<ProfileAction | ||
buildConfiguration = "Release" | ||
shouldUseLaunchSchemeArgsEnv = "YES" | ||
savedToolIdentifier = "" | ||
useCustomWorkingDirectory = "NO" | ||
debugDocumentVersioning = "YES"> | ||
<BuildableProductRunnable | ||
runnableDebuggingMode = "0"> | ||
<BuildableReference | ||
BuildableIdentifier = "primary" | ||
BlueprintIdentifier = "4D7266452C049D800035E348" | ||
BuildableName = "CryptoWidgetKitApp.app" | ||
BlueprintName = "CryptoWidgetKitApp" | ||
ReferencedContainer = "container:CryptoWidgetKitApp.xcodeproj"> | ||
</BuildableReference> | ||
</BuildableProductRunnable> | ||
</ProfileAction> | ||
<AnalyzeAction | ||
buildConfiguration = "Debug"> | ||
</AnalyzeAction> | ||
<ArchiveAction | ||
buildConfiguration = "Release" | ||
revealArchiveInOrganizer = "YES"> | ||
</ArchiveAction> | ||
</Scheme> |
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,28 @@ | ||
{ | ||
"configurations" : [ | ||
{ | ||
"id" : "9F0B5D53-33C8-4636-BB91-BF892799921C", | ||
"name" : "Test Scheme Action", | ||
"options" : { | ||
|
||
} | ||
} | ||
], | ||
"defaultOptions" : { | ||
"targetForVariableExpansion" : { | ||
"containerPath" : "container:CryptoWidgetKitApp.xcodeproj", | ||
"identifier" : "4D7266452C049D800035E348", | ||
"name" : "CryptoWidgetKitApp" | ||
} | ||
}, | ||
"testTargets" : [ | ||
{ | ||
"target" : { | ||
"containerPath" : "container:CryptoWidgetKitApp.xcodeproj", | ||
"identifier" : "4D7266552C049D820035E348", | ||
"name" : "CryptoWidgetKitAppTests" | ||
} | ||
} | ||
], | ||
"version" : 1 | ||
} |
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 |
---|---|---|
@@ -1 +1,7 @@ | ||
# CryptoWidgetKitApp | ||
|
||
[![CodeFactor](https://www.codefactor.io/repository/github/josetorronteras/cryptowidgetkitapp/badge)](https://www.codefactor.io/repository/github/josetorronteras/cryptowidgetkitapp) | ||
|
||
[![iOS build and test workflow](https://github.com/josetorronteras/CryptoWidgetKitApp/actions/workflows/ios.yml/badge.svg?branch=main)](https://github.com/josetorronteras/CryptoWidgetKitApp/actions/workflows/ios.yml) | ||
|
||
[![codecov](https://codecov.io/gh/josetorronteras/CryptoWidgetKitApp/graph/badge.svg?token=5O0SZMNM97)](https://codecov.io/gh/josetorronteras/CryptoWidgetKitApp) |