Skip to content

Attempt CI on github #7

Attempt CI on github

Attempt CI on github #7

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['2.7', '3.0', '3.1', '3.2', '3.3', 'head']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run code analysis
run: |
bundle exec rake code_analysis
- name: Run tests
run: |
bundle exec rake test