Skip to content

improve testing and update requirements #7

improve testing and update requirements

improve testing and update requirements #7

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
name: Test Ruby ${{ matrix.ruby }} on activerecord ${{ matrix.activerecord }}
strategy:
matrix:
ruby: ["3.3"]
activerecord: ["7.1"]
include:
- activerecord: "7.0"
ruby: "3.2"
- activerecord: "6.1"
ruby: "3.1"
- activerecord: "6.0"
ruby: "3.0"
runs-on: ubuntu-latest
env:
BUNDLE_GEMFILE: gemfiles/activerecord-${{ matrix.activerecord }}.gemfile
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Install dependencies
run: bundle install

Check failure on line 34 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 34
- name: Test
run: bundle exec rake spec