Skip to content

Fix colorized 1.9 hash syntax #315

Fix colorized 1.9 hash syntax

Fix colorized 1.9 hash syntax #315

Workflow file for this run

name: Specs
on:
merge_group:
pull_request:
push:
branches:
- master
jobs:
test:
strategy:
fail-fast: false
matrix:
os:
- ubuntu
ruby:
- "2.5"
- "2.6"
- "2.7"
- "3.0"
- "3.1"
- "3.2"
- "3.3"
- "head"
- "jruby-9.3"
runs-on: ${{ matrix.os }}-latest
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
steps:
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get -y install libsqlite3-dev
bundle install --retry 3
- name: Test with all appraisals
if : ${{ matrix.ruby != 'head' }}
run: bundle exec rake
- name: Test without appraisals
if : ${{ matrix.ruby == 'head' }}
run: bundle exec rspec