Update README.md to add note about the Rails adapter #106
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
BUNDLE_GEMFILE: ${{ matrix.gemfile }} | |
strategy: | |
matrix: | |
ruby: | |
- '3.0' | |
- '3.1' | |
- '3.2' | |
gemfile: | |
- Gemfile | |
- gemfiles/rails-6.0.gemfile | |
- gemfiles/rails-6.1.gemfile | |
- gemfiles/rails-7.0.gemfile | |
- gemfiles/rails-edge.gemfile | |
exclude: | |
# Rails Edge only supports Ruby >= 3.1 | |
- ruby: '3.0' | |
gemfile: gemfiles/rails-edge.gemfile | |
name: Ruby ${{ matrix.ruby }} ${{ matrix.gemfile }} | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Ruby ${{ matrix.ruby }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- name: Run tests | |
run: | | |
bundle exec rake |