Fixes/rails7 deprecations #41
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: Rspec | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
rspec: | |
runs-on: ubuntu-latest | |
env: | |
BUNDLE_JOBS: 4 | |
BUNDLE_RETRY: 3 | |
CI: true | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ["2.7", "3.1"] | |
gemfile: [ | |
"gemfiles/rails6.gemfile", | |
"gemfiles/rails7.gemfile" | |
] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/cache@v1 | |
with: | |
path: /home/runner/bundle | |
key: bundle-${{ matrix.ruby }}-${{ matrix.gemfile }}-${{ hashFiles(matrix.gemfile) }}-${{ hashFiles('**/*.gemspec') }} | |
restore-keys: | | |
bundle-${{ matrix.ruby }}-${{ matrix.gemfile }}- | |
- name: Install system deps | |
run: | | |
sudo apt-get update | |
sudo apt-get install libsqlite3-dev | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Bundle install | |
run: | | |
bundle config path /home/runner/bundle | |
bundle config --global gemfile ${{ matrix.gemfile }} | |
bundle install | |
bundle update | |
- name: Run RSpec | |
run: | | |
bundle exec rspec |