Skip to content

Update catalog-info.yaml #12

Update catalog-info.yaml

Update catalog-info.yaml #12

Workflow file for this run

name: Build
on: [push]
jobs:
tests:
name: Unit Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [2.7, '3.0', 3.1, 3.2]
gemfile:
- Gemfile
- gemfiles/activerecord_6_0.gemfile
- gemfiles/activerecord_6_1.gemfile
- gemfiles/activerecord_7_0.gemfile
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Unit Tests
run: bundle exec rspec
- name: Coveralls
if: ${{ matrix.gemfile == 'Gemfile' }}
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}