Sha256: 11618dd42b292024558222b03d3e7eb7a4ca0112c601c0c58e5a3f5465ce2211
Contents?: true
Size: 923 Bytes
Versions: 3
Compression:
Stored size: 923 Bytes
Contents
# This workflow uses actions that are not certified by GitHub. # They are provided by a third-party and are governed by # separate terms of service, privacy policy, and support # documentation. # GitHub recommends pinning actions to a commit SHA. # To get a newer version, you will need to update the SHA. # You can also reference a tag or branch, but the action may change without warning. name: test on: [push, pull_request] jobs: test: runs-on: ubuntu-latest strategy: matrix: ruby-version: ['3.1', '3.0', '2.7', '2.6', '2.5', '2.4'] steps: - uses: actions/checkout@v3 - name: Set up Ruby ${{ matrix.ruby-version }} uses: ruby/setup-ruby@359bebbc29cbe6c87da6bc9ea3bc930432750108 with: ruby-version: ${{ matrix.ruby-version }} - name: Install dependencies run: bundle install - name: Run tests run: bundle exec rake test
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
fillable-pdf-0.9.5.2 | .github/workflows/test.yml |
fillable-pdf-0.9.5.1 | .github/workflows/test.yml |
fillable-pdf-0.9.5 | .github/workflows/test.yml |