Skip to content

Show badge

Show badge #2

Workflow file for this run

name: Ruby CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
# Currently supported Ruby versions as of 2024-04-03.
# See for current status: https://www.ruby-lang.org/en/downloads/branches/
ruby-version: ['3.3', '3.2', '3.1']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: AWS_REGION=us-east-1 bundle exec rake