Upgrade Xcode and simulator #265
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-14 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup Xcode version | |
uses: maxim-lobanov/setup-xcode@v1.6.0 | |
with: | |
xcode-version: 15.0.1 | |
- name: Install Mint | |
run: | | |
brew install mint | |
shell: bash | |
- 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: Cache Mint packages | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.mint/bin | |
~/.mint/packages | |
key: ${{ runner.os }}-mint-${{ hashFiles('~/.mint/metadata.json') }} | |
restore-keys: | | |
${{ runner.os }}-mint- | |
- name: Install Mint Dependencies | |
run: | | |
mint bootstrap | |
shell: bash | |
- name: Testing iOS app | |
run: exec ./.github/scripts/test_app.sh | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3.1.4 |