Sha256: 9a2699578eb6708e6f8b18d7addbbbe9223744fc8187bae5e594055b5d69ef6a

Contents?: true

Size: 1.02 KB

Versions: 8

Compression:

Stored size: 1.02 KB

Contents

name: Test

on:
  - pull_request
  - push

env:
  BUNDLE_WITHOUT: release

jobs:
  rubocop:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: Install Ruby ${{ matrix.ruby }}
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: "3.1"
          bundler-cache: true
      - name: Run Rubocop
        run: bundle exec rubocop --format github

  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"
          - ruby: "3.1"
            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: Build gem
        run: gem build *.gemspec
      - name: Run tests
        run: bundle exec rake spec

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
beaker-4.42.0 .github/workflows/test.yml
beaker-4.41.2 .github/workflows/test.yml
beaker-4.41.1 .github/workflows/test.yml
beaker-4.41.0 .github/workflows/test.yml
beaker-4.40.2 .github/workflows/test.yml
beaker-4.40.1 .github/workflows/test.yml
beaker-4.40.0 .github/workflows/test.yml
beaker-4.39.0 .github/workflows/test.yml