CI #229
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
# This workflow will download a prebuilt Ruby version, install dependencies and | |
# run tests with Rake | |
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby | |
name: CI | |
"on": | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
schedule: | |
- cron: '16 4 12 * *' | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby: ["3.0", "3.1", "3.2", "3.3"] | |
appraisal: [rails_6_0, rails_6_1, rails_7_0, rails_7_1, rails_7_2] | |
exclude: | |
- ruby: "3.0" | |
appraisal: rails_7_2 | |
env: | |
BUNDLE_GEMFILE: gemfiles/${{ matrix.appraisal }}.gemfile | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- uses: actions/cache@v4 | |
with: | |
# NOTE: Bundler expands the path relative to the gemfile, not the | |
# current directory. | |
path: ./gemfiles/vendor/bundle | |
key: bundled-gems-${{ runner.os }}-ruby-${{ matrix.ruby }}-${{ matrix.appraisal }}-${{ hashFiles(env.BUNDLE_GEMFILE, '*.gemspec') }} | |
restore-keys: | | |
bundled-gems-${{ runner.os }}-ruby-${{ matrix.ruby }}-${{ matrix.appraisal }}- | |
bundled-gems-${{ runner.os }}-ruby-${{ matrix.ruby }}- | |
- name: Install gems | |
run: | | |
bundle config path vendor/bundle | |
bundle install --jobs 4 | |
- name: Run tests | |
run: bundle exec rake | |
rubocop: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.2" | |
bundler-cache: true | |
- name: Run RuboCop | |
run: bundle exec rubocop -P |