Skip to content

Workflow file for this run

name: vapor-ci-test
on:
pull_request:
branches: [ master ]
paths:
- 'vapor-ci/**'
defaults:
run:
working-directory: ./vapor-ci
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
concurrency:
group: vapor-ci-test-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7

Check failure on line 36 in .github/workflows/vapor-ci-test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/vapor-ci-test.yml

Invalid workflow file

You have an error in your yaml syntax on line 36
- run: |
gem install bundler
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
# bundle exec rubocop
bundle exec rspec