mirror of
https://github.com/puppetlabs/beaker-vmpooler.git
synced 2026-01-26 02:58:42 -05:00
26 lines
512 B
YAML
26 lines
512 B
YAML
name: Test
|
|
|
|
on:
|
|
- pull_request
|
|
- push
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
ruby:
|
|
- "2.5"
|
|
- "2.6"
|
|
- "2.7"
|
|
name: Ruby ${{ matrix.ruby }}
|
|
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 test:spec
|