github actions #4
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: Ruby | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby-version: [2.6, 2.7, 3.0, 3.1] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true # This will set up Bundler and cache the dependencies | |
- name: Install Bundler | |
run: gem install bundler | |
- name: Update Gemfile.lock for Linux | |
run: bundle lock --add-platform x86_64-linux | |
- name: Install dependencies | |
run: bundle install | |
- name: Run tests | |
run: bundle exec rake test |