Skip to content

Bump rubocop-performance from 1.23.0 to 1.23.1 #2022

Bump rubocop-performance from 1.23.0 to 1.23.1

Bump rubocop-performance from 1.23.0 to 1.23.1 #2022

Workflow file for this run

name: Ruby
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.allow-failures }}
strategy:
matrix:
ruby: ['3.1', '3.2', '3.3', '3.4']
allow-failures: [false]
include:
- ruby: head
allow-failures: true
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install bundler dependencies
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Check source files using `rubocop`
run: rubocop
- name: Start palladium-api
run: |
docker compose up -d
sleep 60
- name: Run tests
run: bundle exec rspec spec/tests --fail-fast