Sha256: a3f78b8bb35008aec04975c4292323b7b4df745d587bd54b7468f1b7bd028140

Contents?: true

Size: 490 Bytes

Versions: 1

Compression:

Stored size: 490 Bytes

Contents

name: CI

on: [push, pull_request]

jobs:
  specs:
    name: Run specs with Ruby ${{matrix.ruby}}
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby: ['2.6', '2.7', '3.0', '3.1']
        include:
        - ruby: head
          experimental: true
    steps:
    - uses: actions/checkout@v3
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{matrix.ruby}}
        bundler-cache: true
    - name: Run specs
      run: bundle exec rspec

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pdfmonkey-0.8.1 .github/workflows/ci.yml