Skip to content

Fix bad StringIO reference #12

Fix bad StringIO reference

Fix bad StringIO reference #12

Workflow file for this run

name: Run tests
on:
push:
branches:
- 'main'
pull_request:
types: [opened, synchronize, reopened]
paths:
- "**.rb"
- Gemfile
- Gemfile.lock
- .github/workflows/run_tests.yml
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ruby
- name: Install dependencies
run: bundle install
- name: Check types
run: bundle exec srb tc
- name: Run tests
run: bundle exec rake test