Skip to content

Merge pull request #433 from HarlemSquirrel/test-docker-compose #134

Merge pull request #433 from HarlemSquirrel/test-docker-compose

Merge pull request #433 from HarlemSquirrel/test-docker-compose #134

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
name: Test
on:
pull_request:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- "3.0"
- "3.1"
- "3.2"
- "3.3"
- "jruby-9.3"
- "jruby-9.4"
- "truffleruby"
steps:
- uses: actions/checkout@v2
- name: Run tests with Ruby ${{ matrix.ruby }}
run: docker compose run ci-${{ matrix.ruby }}