Skip to content

Commit

Permalink
Revert the previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gavindidrichsen committed Oct 23, 2024
1 parent 15e48cd commit ec6c6c4
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,29 @@ on:
workflow_dispatch:

jobs:

spec:
strategy:
fail-fast: false
matrix:
ruby_version:
- "2.7"
- "3.2"
include:
- puppet_gem_version: "~> 7.0"
ruby_version: "2.7"
- puppet_gem_version: "~> 8.0"
ruby_version: "3.2"
name: "spec (ruby ${{ matrix.ruby_version }})"
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_ci.yml@main"
secrets: "inherit"
with:
rake_task: 'spec:coverage'
ruby_version: ${{ matrix.ruby_version }}
puppet_gem_version: ${{ matrix.puppet_gem_version }}

acceptance:
needs: "spec"
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -55,4 +77,3 @@ jobs:
SOURCE_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
repository: ${{ github.repository }}
run_id: ${{ github.run_id }}

0 comments on commit ec6c6c4

Please sign in to comment.