Skip to content

Workflow file for this run

run-name: Deploy to ${{ inputs.deploy_target }} by @${{ github.actor }}
on:
pull_request:
branches:
- development
workflow_dispatch:
jobs:
test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Run Tests (No Cache)
if: steps.setup.outputs.cache-hit != 'true'
run: bundle exec fastlane tests
name: Pull Request
on:

Check failure on line 23 in .github/workflows/pullRequest.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pullRequest.yml

Invalid workflow file

You have an error in your yaml syntax on line 23
pull_request:
branches:
- development
workflow_dispatch:
jobs:
test:
runs-on: macos-11
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
- name: Install Bundler
run: gem install bundler
- name: Install gems
run: bundle install
- name: Run Tests (No Cache)
run: bundle exec fastlane tests