Use jQuery 2.x #217
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: Test supported versions | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
env: | |
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rails_6_1.gemfile | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Ruby and install gems | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
ruby-version: 3.1 | |
- name: Run linters | |
run: bundle exec rubocop | |
spec: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ["3.0", 3.1, 3.2] | |
gemfile: [rails_6_1, rails_7_0, rails_7_1] | |
exclude: | |
# Rails < 7.0.1 is not compatible with Ruby 3.1+ | |
- ruby: 3.1 | |
gemfile: rails_6_1 | |
- ruby: 3.2 | |
gemfile: rails_6_1 | |
env: | |
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Ruby and install gems | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
ruby-version: ${{ matrix.ruby }} | |
- name: Migrate DB | |
run: bundle exec rake app:db:migrate | |
- name: Prepare DB | |
run: bundle exec rake app:db:test:prepare | |
- name: Run spec | |
run: bundle exec rspec |