Merge pull request #187 from stimulusreflex/dependabot/bundler/action… #471
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: Tests | |
on: | |
pull_request: | |
branches: | |
- '*' | |
push: | |
branches: | |
- master | |
jobs: | |
ruby_test: | |
name: Ruby Test Action | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby-version: ['3.1.4', '3.2.2', '3.3.0'] | |
rails-version: ['6_1', '7_0', '7_1'] | |
env: | |
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rails_${{ matrix.rails-version }}.gemfile | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up Ruby ${{ matrix.ruby-version }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
- uses: actions/cache@v1 | |
with: | |
path: vendor/bundle | |
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-gems- | |
- name: Install sqlite headers | |
run: | | |
sudo apt-get update | |
sudo apt-get install libsqlite3-dev | |
- name: Bundle install | |
run: | | |
gem install bundler | |
gem update --system | |
bundle config path vendor/bundle | |
bundle install --jobs 4 --retry 3 | |
- name: Run ruby tests | |
run: | | |
bundle exec rake test |