Add AddCardDatasource unit tests #328
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
name: Testing | |
on: [push, pull_request] | |
env: | |
# TUIST_CONFIG_CLOUD_TOKEN: ${{ secrets.TUIST_CONFIG_CLOUD_TOKEN }} | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
jobs: | |
test: | |
name: Testing SWDestiny Trades app | |
runs-on: macOS-13 | |
strategy: | |
matrix: | |
scheme: [ | |
SWDestinyTrades | |
] | |
workspace: [ | |
swdestiny-trades.xcworkspace | |
] | |
destination: [ | |
'platform=iOS Simulator,name=iPhone 15 Pro,OS=17.2' | |
] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Xcode version | |
uses: maxim-lobanov/[email protected] | |
with: | |
xcode-version: 15.1 | |
- name: Install Tuist | |
run: | | |
bash <(curl -Ls https://install.tuist.io) | |
shell: bash | |
- name: Fetch tuist dependencies | |
run: | | |
tuist fetch | |
shell: bash | |
#- name: Tuist Warm Cache | |
# run: | | |
# tuist cache warm | |
# shell: bash | |
- name: Generate project with tuist | |
run: | | |
tuist generate --no-open | |
shell: bash | |
- name: Install Project Tools | |
uses: asdf-vm/actions/install@v2 | |
- name: Test ${{ matrix.scheme }} on ${{ matrix.destination }} | |
run: | | |
xcodebuild -workspace ${{ matrix.workspace }} \ | |
-scheme ${{ matrix.scheme }} \ | |
-destination '${{ matrix.destination }}' \ | |
-resultBundlePath ./coverage/SwdUnitTests.xcresult \ | |
-enableCodeCoverage YES \ | |
test | xcpretty && exit ${PIPESTATUS[0]} | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
swift: true | |
swift_project: SWDestinyTrades | |
verbose: true |