Skip to content

Updates for ruby 3.0 #16

Updates for ruby 3.0

Updates for ruby 3.0 #16

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
ruby_rails_test_matrix:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['2.7', '3.0', '3.1']
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
rubygems: 3.3.22
bundler-cache: true
- name: Runs code QA and tests
env:
RAILS_VERSION: ~> ${{ matrix.rails }}
COVERAGE: no
run: |
sudo apt-get update
sudo apt-get install openjdk-8-jdk
bundle
bundle exec rake rspec