Skip to content

Merge pull request #344 from bastelfreak/rel400 #146

Merge pull request #344 from bastelfreak/rel400

Merge pull request #344 from bastelfreak/rel400 #146

Workflow file for this run

name: Tests
on:
pull_request: {}
push:
branches:
- master
jobs:
rubocop:
env:
BUNDLE_WITHOUT: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
bundler-cache: true
- name: Run Rubocop
run: bundle exec rake rubocop
test:
strategy:
fail-fast: false
matrix:
os:
- windows-latest
- ubuntu-latest
- macos-latest
puppet:
- "~> 7.0"
- "~> 8.0"
include:
- puppet: "~> 7.0"
ruby: 2.7
- puppet: "~> 8.0"
ruby: 3.2
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
env:
PUPPET_VERSION: ${{ matrix.puppet }}
- name: Set long paths on Windows
if: ${{ matrix.os == 'windows-latest' }}
run: Set-ItemProperty 'HKLM:\System\CurrentControlSet\Control\FileSystem' -Name 'LongPathsEnabled' -value 1
- env:
PUPPET_VERSION: ${{ matrix.puppet }}
run: bundle exec rake full_tests
tests:
needs:
- rubocop
- test
runs-on: ubuntu-latest
name: Test suite
steps:
- run: echo Test suite completed