Change example setup to reproduce issue #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
name: Example | |
on: ["push"] | |
jobs: | |
build: | |
name: Build | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Select Xcode 11.3.1 | |
run: sudo xcode-select -switch /Applications/Xcode_11.3.1.app | |
- name: Install Tuist | |
run: | | |
bash <(curl -Ls https://install.tuist.io) | |
- name: Generate project | |
run: | | |
tuist generate | |
- name: Build support | |
run: | | |
make build-support | |
- name: Build kit | |
run: | | |
make build-kit | |
- name: Build app | |
run: | | |
make build-app |