Sha256: b0fc86bb4fa4f2d33e4371b22725e1632f958d133a2223ce7abfdd756fff5e00

Contents?: true

Size: 489 Bytes

Versions: 2

Compression:

Stored size: 489 Bytes

Contents

# Setup Ruby, install gems, cache gems, and run test suite
# - https://github.com/ruby/setup-ruby

name: Tests
on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby: [ '2.5', '2.6' ]
    name: Ruby ${{ matrix.ruby }} tests
    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        bundler-cache: true
        ruby-version: ${{ matrix.ruby }}
    - run: bundle install
    - run: bundle exec rake -t

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pcre2-0.2.0 .github/workflows/tests.yml
pcre2-0.1.0 .github/workflows/tests.yml