Skip to content

Merge pull request #118 from puppetlabs/release-prep #124

Merge pull request #118 from puppetlabs/release-prep

Merge pull request #118 from puppetlabs/release-prep #124

Workflow file for this run

name: ruby-rspec
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Test with Ruby ${{ matrix.ruby_version }}
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- '3.2'
- '3.1'
- '3.0'
- '2.7'
- '2.6'
steps:
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Build and test with Rspec
run: bundle exec rspec