Added all models to schema check #250
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: build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- ruby: 3.3 | |
gemfile: gemfiles/rails72.gemfile | |
- ruby: 3.3 | |
gemfile: Gemfile | |
- ruby: 3.2 | |
gemfile: Gemfile | |
- ruby: 3.1 | |
gemfile: gemfiles/rails70.gemfile | |
- ruby: "3.0" | |
gemfile: gemfiles/rails61.gemfile | |
- ruby: 2.7 | |
gemfile: gemfiles/rails60.gemfile | |
- ruby: 2.6 | |
gemfile: gemfiles/rails52.gemfile | |
- ruby: 3.1 | |
gemfile: gemfiles/mongoid8.gemfile | |
mongodb: true | |
- ruby: 2.7 | |
gemfile: gemfiles/mongoid7.gemfile | |
mongodb: true | |
- ruby: 2.6 | |
gemfile: gemfiles/mongoid6.gemfile | |
mongodb: true | |
env: | |
BUNDLE_GEMFILE: ${{ matrix.gemfile }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- if: ${{ matrix.mongodb }} | |
uses: ankane/setup-mongodb@v1 | |
- run: sudo apt-get update && sudo apt-get install libsodium23 libvips42 poppler-utils | |
- run: bundle exec rake test | |
- if : ${{ !matrix.mongodb }} | |
uses: ankane/setup-postgres@v1 | |
with: | |
database: lockbox_test | |
- if : ${{ !matrix.mongodb }} | |
run: ADAPTER=postgresql bundle exec rake test | |
- if : ${{ !matrix.mongodb }} | |
uses: ankane/setup-mysql@v1 | |
with: | |
database: lockbox_test | |
- if : ${{ !matrix.mongodb }} | |
run: ADAPTER=mysql2 bundle exec rake test |