Sha256: 5d7811fe0730444876c9b5333cd3e163a772b1b430e8a7833c93922a9ec67096

Contents?: true

Size: 1.06 KB

Versions: 1

Compression:

Stored size: 1.06 KB

Contents

name: Test

on: [push, pull_request]

jobs:
  test:
    name: Test on ruby ${{ matrix.ruby_version }} and prawn ${{ matrix.prawn_version }}
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby_version:
          - 2.5.x
          - 2.6.x
          - 2.7.x
        prawn_version:
          - 2.2
          - 2.3

    steps:
    - uses: actions/checkout@v1

    - name: Set up diff-pdf
      run: |
        sudo apt-get update
        sudo apt-get install make automake g++ libpoppler-glib-dev poppler-utils libwxgtk3.0-dev
        git clone https://github.com/vslavik/diff-pdf.git -b v0.4.1 --depth 1 /tmp/diff-pdf-src
        cd /tmp/diff-pdf-src
        ./bootstrap && ./configure && make && sudo make install

    - name: Set up Ruby ${{ matrix.ruby_version }}
      uses: actions/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby_version }}

    - name: Build and test with Rake
      run: |
        gem install bundler
        bundle install --gemfile test/gemfiles/prawn-${{ matrix.prawn_version }} --jobs 4 --retry 3
        bundle exec rake test

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
prawn-emoji-4.1.0 .github/workflows/test.yml