Skip to content

Update ruby version to v3.2.2, matching that of the production server #79

Update ruby version to v3.2.2, matching that of the production server

Update ruby version to v3.2.2, matching that of the production server #79

Workflow file for this run

name: Ruby
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
working-directory: ./tests
- name: Run tests
run: bundle exec rake
working-directory: ./tests