Sha256: ad9f3d1f2653518a88a3c5401d63c67d0b15a0baa3d04ae8affa0f5602d9417c

Contents?: true

Size: 650 Bytes

Versions: 5

Compression:

Stored size: 650 Bytes

Contents

name: Test

on:
  - pull_request
  - push

env:
  BUNDLE_WITHOUT: release

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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
beaker-4.34.0 .github/workflows/test.yml
beaker-4.33.0 .github/workflows/test.yml
beaker-4.32.0 .github/workflows/test.yml
beaker-4.31.0 .github/workflows/test.yml
beaker-4.30.0 .github/workflows/test.yml