Update cis_include_rules.txt #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: CI | |
on: | |
push: | |
# branches: | |
# - main | |
# - feature/* | |
paths: | |
- '.github/**' | |
- 'hiera.yaml' | |
- 'data/**' | |
- 'manifests/**' | |
- 'files/**' | |
- 'spec/**' | |
- 'lib/**' | |
- 'Gemfile' | |
pull_request: | |
paths: | |
- 'hiera.yaml' | |
- 'data/**' | |
- 'manifests/**' | |
- 'spec/**' | |
- 'lib/**' | |
jobs: | |
unit: | |
runs-on: ubuntu-latest | |
continue-on-error: ${{ matrix.allow_failure }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- ruby: 2.7.8 | |
puppet: 7 | |
fixtures: .fixtures.yml | |
allow_failure: false | |
- ruby: 3.2.2 | |
puppet: 8 | |
fixtures: .fixtures.yml | |
allow_failure: false | |
env: | |
BUNDLE_WITHOUT: system_tests:release | |
PUPPET_GEM_VERSION: "~> ${{ matrix.puppet }}.0" | |
FIXTURES_YML: ${{ matrix.fixtures }} | |
name: Puppet ${{ matrix.puppet }} (Ruby ${{ matrix.ruby }} fixtures=${{ matrix.fixtures }}) | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
cache-version: 2 | |
bundler: '2.1.0' | |
- name: Validate | |
run: bundle exec rake syntax lint metadata_lint | |
- name: Run tests | |
run: bundle exec rake parallel_spec |