Skip to content

Merge pull request #1 from fishbrain/dependabot/github_actions/action… #29

Merge pull request #1 from fishbrain/dependabot/github_actions/action…

Merge pull request #1 from fishbrain/dependabot/github_actions/action… #29

Workflow file for this run

name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['2.7', '3.0', '3.3']
name: Ruby ${{ matrix.ruby }} CI
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- run: bundle install
- run: bundle exec rubocop
- run: bundle exec rake test