[#557] Add validation step #211
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: Test SwiftUI Install Script | |
on: | |
push: | |
branches: [ feature/**, bug/**, chore/** ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
Test: | |
name: Test | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Bundle install | |
run: bundle install | |
- name: Start Install Script for SwiftUI Template App | |
run: swift run --package-path Scripts/Swift/iOSTemplateMaker iOSTemplateMaker make --bundle-id-production co.nimblehq.ios.templates --bundle-id-staging co.nimblehq.ios.templates.staging --project-name TemplateApp --interface SwiftUI | |
- name: Build and Test | |
run: bundle exec fastlane buildAndTest | |
env: | |
CI: true |