Skip to content

Bump json from 2.19.0 to 2.19.1 #397

Bump json from 2.19.0 to 2.19.1

Bump json from 2.19.0 to 2.19.1 #397

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- '3.3'
- '3.4'
- '4.0'
steps:
- uses: actions/checkout@v6
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Run setup
run: bin/setup
- name: Run the default task
run: bundle exec rake
- name: Generate RBS files
run: |
bundle exec rbs-inline lib --output
- name: Type check with Steep
run: bundle exec steep check
- name: Confirm the latest RBS file is committed
run: |
git diff --exit-code sig