Sha256: 02346ff7d82ec7d3944d709803a86d27f384abe252372f08edfdf0978fc837a7

Contents?: true

Size: 700 Bytes

Versions: 3

Compression:

Stored size: 700 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", "3.3"]
        rubyopt: [""]
        include:
          - ruby: "3.3"
            rubyopt: "--enable-frozen-string-literal --debug-frozen-string-literal"

    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 RUBYOPT="${{ matrix.rubyopt }}"

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
combine_pdf-1.0.29 .github/workflows/main.yml
combine_pdf-1.0.28 .github/workflows/main.yml
combine_pdf-1.0.27 .github/workflows/main.yml