Skip to content

Merge pull request #6 from RIPAGlobal/dependabot/bundler/actionpack-7… #23

Merge pull request #6 from RIPAGlobal/dependabot/bundler/actionpack-7…

Merge pull request #6 from RIPAGlobal/dependabot/bundler/actionpack-7… #23

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['2.7', '3.0', '3.1', '3.2']
steps:
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rspec