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
run-name: Deploy to ${{ inputs.deploy_target }} by @${{ github.actor }} | ||
on: | ||
pull_request: | ||
branches: | ||
- development | ||
workflow_dispatch: | ||
jobs: | ||
test: | ||
runs-on: macos-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
- uses: ruby/setup-ruby@v1 | ||
- name: Install Bundler | ||
run: gem install bundler | ||
- name: Run Fastlane | ||
run: bundle exec fastlane tests | ||