Skip to content

Commit

Permalink
foo
Browse files Browse the repository at this point in the history
  • Loading branch information
bschonec committed May 20, 2024
1 parent fde7f05 commit 7e36d66
Showing 1 changed file with 13 additions and 50 deletions.
63 changes: 13 additions & 50 deletions .github/workflows/test-suite.yaml
Original file line number Diff line number Diff line change
@@ -1,51 +1,14 @@
name: Test

on:
pull_request: {}
push:
branches:
- master

env:
BUNDLE_WITHOUT: release

name: CI

on: pull_request

concurrency:
group: ${{ github.ref_name }}
cancel-in-progress: true

jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- "3.2"
- "3.1"
- "3.0"
- "2.7"
puppet:
- "~> 8.0"
- "~> 7.24"
exclude:
- ruby: "3.0"
puppet: "~> 8.0"
- 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: Build gem
run: gem build --strict --verbose *.gemspec
- name: Run tests
run: bundle exec rake spec
tests:
needs:
- test
runs-on: ubuntu-latest
name: Test suite
steps:
- run: echo Test suite completed
puppet:
name: Puppet
uses: voxpupuli/gha-puppet/.github/workflows/basic.yml@v1
with:
rubocop: false

0 comments on commit 7e36d66

Please sign in to comment.