Sha256: 9b8da8909d1199976e06852cb0d40582c65572d4f637d04dd4eb1a348f308fa3

Contents?: true

Size: 927 Bytes

Versions: 2

Compression:

Stored size: 927 Bytes

Contents

name: Test

on: [push, pull_request]

jobs:
  test:
    name: Test on ruby ${{ matrix.ruby_version }}
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby_version:
          - 2.5.x
          - 2.6.x
          - 2.7.x
    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 --jobs 4 --retry 3
        bundle exec rake test

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
prawn-emoji-4.0.0 .github/workflows/test.yml
prawn-emoji-4.0.0.beta.1 .github/workflows/test.yml