Sha256: ef19c666c1c9983e5fa4c79e052280d30b604cec1dfc1630e1a6510e293a34b0

Contents?: true

Size: 603 Bytes

Versions: 2

Compression:

Stored size: 603 Bytes

Contents

name: Test

on:
  - pull_request
  - push

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false
      matrix:
        ruby:
          - "2.4"
          - "2.5"
          - "2.6"
          - "2.7"
          - "3.0"
    name: Ruby ${{ matrix.ruby }}
    steps:
      - uses: actions/checkout@v2
      - name: Install Ruby ${{ matrix.ruby }}
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - name: Build docs
        run: bundle exec rake yard
      - name: Run tests
        run: bundle exec rake spec

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
beaker-4.29.1 .github/workflows/test.yml
beaker-4.29.0 .github/workflows/test.yml