Skip to content

Cleanup CI config. #184

Cleanup CI config.

Cleanup CI config. #184

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
ruby_rails_test_matrix:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.1', '3.2', '3.3']
rails: ['6.1', '7.0.1', '7.1']
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Runs code QA and tests
env:
RAILS_VERSION: ~> ${{ matrix.rails }}
run: |
rm -rf Gemfile.lock
sudo apt-get update
sudo apt-get install libsqlite3-dev
bundle
bundle exec rake