Skip to content

Remove extra github action file #3

Remove extra github action file

Remove extra github action file #3

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- '2.6'
- '2.7'
- '3.0'
- '3.1'
activerecord:
- '5.2'
- '6.0'
- '6.1'
- '7.0'
exclude:
- activerecord: '5.2'
ruby: '3.1'
- activerecord: '5.2'
ruby: '3.0'
- activerecord: '7.0'
ruby: '2.6'
name: Ruby ${{ matrix.ruby }} / ActiveRecord ${{ matrix.activerecord }}
env:
AR: ~> ${{ matrix.activerecord }}
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: |
bundle exec rake