Sha256: 519c99312da18a5b19047d522003936996e447f13800d6a700e012e7ffab4a6c

Contents?: true

Size: 999 Bytes

Versions: 2

Compression:

Stored size: 999 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.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby

name: build

on: push

jobs:
  test:
    runs-on: ubuntu-20.04
    strategy:
      fail-fast: false
      matrix:
        ruby-version:
          - 3.0.0
          - 2.7.2
          - 2.6.6
          - 2.5.8
          - 2.4.10
        gemfile:
          - openssl_2_2
          - openssl_2_1
          - openssl_2_0
    env:
      BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
    steps:
    - uses: actions/checkout@v2
    - run: rm Gemfile.lock
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
        bundler-cache: true
    - run: bundle exec rake

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
openssl-signature_algorithm-1.1.1 .github/workflows/build.yml
openssl-signature_algorithm-1.1.0 .github/workflows/build.yml