Skip to content

README - fix links to github issues #31

README - fix links to github issues

README - fix links to github issues #31

Workflow file for this run

name: Test
on:
push:
branches:
- develop
- 1-2-stable
- 2-0-stable
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
ruby: [3.1, 3.3]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # Also installs gems
- name: Install prerequisites for tests
run: sudo apt-get install -y graphviz
- name: Run tests
run: bundle exec rake test