Skip to content

chore: use jruby instead of jruby-head in test workflow #168

chore: use jruby instead of jruby-head in test workflow

chore: use jruby instead of jruby-head in test workflow #168

Workflow file for this run

---
name: Build + Test
on:
push:
branches:
- "**" # matches every branch
- "!master" # excludes master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version:
- '2.6'
- '2.7'
- '3.0'
- '3.1'
- '3.2'
- ruby-head
- jruby
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
# runs 'bundle install' and caches installed gems automatically
bundler-cache: true
- name: Setup Graphviz
uses: ts-graphviz/setup-graphviz@v2
- name: Deps
run: bundle install --jobs 4 --retry 3
- name: Run tests
run: bundle exec rake test