Skip to content

Merge branch 'main' into fix-ci #17

Merge branch 'main' into fix-ci

Merge branch 'main' into fix-ci #17

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- "3.1.2"
- "3.2.1"
- "3.3.1"
steps:
- uses: actions/checkout@v3
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bin/test