Sha256: 30ffe65be9628cbf1f7df5aa225897fe1b797d6bb40dc5d1669eed82bca7582e

Contents?: true

Size: 1.35 KB

Versions: 5

Compression:

Stored size: 1.35 KB

Contents

name: Test

on:
  pull_request: {}
  push:
    branches:
      - master

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

  test:
    # CentOS 7 testing is broken on Ubuntu 22.04
    runs-on: ubuntu-20.04
    strategy:
      fail-fast: false
      matrix:
        include:
          - ruby: "2.7"
          - ruby: "3.0"
          - ruby: "3.1"
          - ruby: "3.2"
            coverage: "yes"
    env:
      COVERAGE: ${{ matrix.coverage }}
      BUNDLE_WITHOUT: release:rubocop
      BEAKER_HYPERVISOR: docker
    steps:
      - uses: actions/checkout@v3
      - name: Install Ruby ${{ matrix.ruby }}
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - name: Build gem
        run: gem build --strict --verbose *.gemspec
      - name: Run unit tests
        run: bundle exec rake spec
      - name: Run acceptance tests
        run: bundle exec rake acceptance

  tests:
    needs:
      - rubocop
      - test
    runs-on: ubuntu-latest
    name: Test suite
    steps:
      - run: echo Test suite completed

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
beaker-5.6.0 .github/workflows/test.yml
beaker-5.5.0 .github/workflows/test.yml
beaker-5.4.0 .github/workflows/test.yml
beaker-5.3.1 .github/workflows/test.yml
beaker-5.3.0 .github/workflows/test.yml