Skip to content

Configure acceptance tests #43

Configure acceptance tests

Configure acceptance tests #43

Workflow file for this run

name: "Static & Spec Tests"
on:
- pull_request
- push
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- "3.0"
- "2.7"
puppet:
- "~> 8.0"
- "~> 7.0"
exclude:
- ruby: "2.7"
puppet: "~> 8.0"
name: "Ruby ${{ matrix.ruby }} - Puppet ${{ matrix.puppet }}"
env:
PUPPET_VERSION: ${{ matrix.puppet }}
steps:
- uses: actions/checkout@v3
- 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
- name: Rubocop
run: bundle exec rake rubocop
acceptance:
runs-on: ubuntu-latest
env:
BEAKER_setfile: ${{ matrix.beaker }}
strategy:
fail-fast: false
matrix:
beaker:
- debian10-64
- debian11-64
- ubuntu2204-64
- redhat9-64
- rocky9-64
name: Acceptance / Image ${{ matrix.beaker }}
steps:
- uses: actions/checkout@v3
- name: Setup ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.0"
bundler-cache: true
- name: Run acceptance
run: bundle exec rake beaker