Sha256: 7fd0b8a6b345595ad70f3174f950ffc23395163439ec4971837c6ebb343fb6db

Contents?: true

Size: 540 Bytes

Versions: 1

Compression:

Stored size: 540 Bytes

Contents

name: Single Matrix Test

on:
  workflow_dispatch:
    inputs:
      ruby_version:
        required: true
        type: choice
        options:
        - ruby-2.6
        - ruby-2.7
        - ruby-3.0
        - ruby-3.1
        - jruby-9.3.7

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ inputs.ruby_version }}
        bundler-cache: true
    - name: Run all tests with RSpec 
      run: bundle exec rspec

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rest-man-1.1.0 .github/workflows/single-matrix-test.yml