Sha256: 5543a0dea90ce2185dba8aa691a0e68697b61aa8ef9b18ecbce456f4a1ddfe8f

Contents?: true

Size: 514 Bytes

Versions: 3

Compression:

Stored size: 514 Bytes

Contents

name: Main
on:
  push:

jobs:
  tests:
    name: Tests
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby: ["2.7", "3.0", "3.1", "3.2"]

    steps:
      - name: Checkout code
        uses: actions/checkout@v3

      - name: Setup Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true

      - name: Generate lockfile
        run: bundle lock

      - name: Run tests
        run: bundle exec rake test

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
combine_pdf-1.0.26 .github/workflows/main.yml
combine_pdf-1.0.25 .github/workflows/main.yml
combine_pdf-1.0.24 .github/workflows/main.yml