Skip to content

Bump json from 2.18.1 to 2.19.2 #187

Bump json from 2.18.1 to 2.19.2

Bump json from 2.18.1 to 2.19.2 #187

Workflow file for this run

name: Tests
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Lint Ruby
run: |
bin/rubocop
ruby-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [ '3.2', '3.3', '3.4', '3.5', '4.0' ]
steps:
- uses: actions/checkout@v4
- name: Setup timezone
uses: zcong1993/setup-timezone@master
with:
timezone: UTC
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
bundler: latest
- name: Run Ruby tests
run: |
bin/rake test
env:
SUITE: ruby