Fix parsing of invalid PDFs containing non-existing indirect stream l… #161
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |