Skip to content

Fix Prawn docs link (#36) #37

Fix Prawn docs link (#36)

Fix Prawn docs link (#36) #37

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- '*'
push:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['2.7', '3.0', '3.1', '3.2', '3.3']
env:
BUNDLE_PATH_RELATIVE_TO_CWD: true
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: StandardRb check
run: bundle exec standardrb
- name: Run tests
run: bundle exec rake test