Handle edge cases in development and test on classes that become undefined #72
Workflow file for this run
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- master | |
- actions-* | |
tags: | |
- v* | |
pull_request: | |
branches-ignore: | |
- actions-* | |
workflow_dispatch: | |
env: | |
BUNDLE_CLEAN: "true" | |
BUNDLE_PATH: vendor/bundle | |
BUNDLE_JOBS: 3 | |
BUNDLE_RETRY: 3 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- ruby: "ruby" | |
standardrb: true | |
- ruby: "3.1" | |
appraisal: "activerecord_7" | |
- ruby: "2.7" | |
appraisal: "activerecord_6" | |
- ruby: "2.5" | |
appraisal: "activerecord_5" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby ${{ matrix.ruby }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "${{ matrix.ruby }}" | |
- name: Install packages | |
run: | | |
sudo apt-get update | |
sudo apt-get install libsqlite3-dev | |
- name: Setup bundler | |
if: matrix.bundler != '' | |
run: | | |
gem uninstall bundler --all | |
gem install bundler --no-document --version ${{ matrix.bundler }} | |
- name: Set Appraisal bundle | |
if: matrix.appraisal != '' | |
run: | | |
echo "using gemfile gemfiles/${{ matrix.appraisal }}.gemfile" | |
bundle config set gemfile "gemfiles/${{ matrix.appraisal }}.gemfile" | |
- name: Install gems | |
run: | | |
bundle update | |
- name: Run Tests | |
run: bundle exec rake | |
- name: standardrb | |
if: matrix.standardrb == true | |
run: bundle exec rake standard |