Skip to content

FI-2160 update dependencies #24

FI-2160 update dependencies

FI-2160 update dependencies #24

Workflow file for this run

name: Ruby
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.0', '3.1', '3.2']
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Set frozen config to false
run: bundle config set --local frozen false
- name: Install Dependencies
run: bundle install
with:

Check failure on line 26 in .github/workflows/ruby.yml

View workflow run for this annotation

GitHub Actions / Ruby

Invalid workflow file

The workflow is not valid. .github/workflows/ruby.yml (Line: 26, Col: 7): Unexpected value 'with'
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rake
- name: Rubocop
run: bundle exec rubocop