Skip to content

Fix parsing of invalidly placed closing parentheses #159

Fix parsing of invalidly placed closing parentheses

Fix parsing of invalidly placed closing parentheses #159

Workflow file for this run

name: HexaPDF Tests
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
ruby: ['3.0', '3.1', '3.2', '3.3', head]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: sudo apt install netpbm pngcheck
if: matrix.os == 'ubuntu-latest'
- run: bundle exec rake
if: matrix.os == 'ubuntu-latest' && matrix.ruby == 'head'
- run: bundle exec rake
env:
NO_SIMPLECOV: true
if: matrix.os != 'ubuntu-latest' || matrix.ruby != 'head'