Skip to content

Commit

Permalink
(maint) - Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanbreen28 committed Sep 21, 2023
1 parent f69f0a7 commit 0596510
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 9 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
fail-fast: false
matrix:
ruby_version:
- '2.5'
- '2.7'
- '3.2'
runs_on:
- 'ubuntu-latest'
- 'windows-latest'
Expand All @@ -32,20 +32,25 @@ jobs:
fail-fast: false
matrix:
ruby_version:
- '2.5'
- '2.7'
- '3.2'
runs_on:
- 'ubuntu-latest'
- 'windows-latest'
include:
- ruby_version: '2.7'
puppet_version: '~> 7.0'
- ruby_version: '3.2'
puppet_version: '~> 8.0'

name: "Acceptance : ${{ matrix.runs_on }} Ruby ${{ matrix.ruby_version }}"
name: "Acceptance : ${{ matrix.runs_on }} Ruby ${{ matrix.ruby_version }} Puppet ${{ matrix.puppet_version }}}"
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_acceptance.yml@main"
secrets: "inherit"
with:
ruby_version: ${{ matrix.ruby_version }}
runs_on: ${{ matrix.runs_on }}
rake_task: 'gem_revendor acceptance_languageserver'
puppet_version: '~> 7.24'
puppet_version: ${{ matrix.puppet_version }}

build:
name: "Build Editor Service"
Expand Down
15 changes: 10 additions & 5 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "nightly"
name: "ci"

on:
schedule:
Expand All @@ -12,8 +12,8 @@ jobs:
fail-fast: false
matrix:
ruby_version:
- '2.5'
- '2.7'
- '3.2'
runs_on:
- 'ubuntu-latest'
- 'windows-latest'
Expand All @@ -31,20 +31,25 @@ jobs:
fail-fast: false
matrix:
ruby_version:
- '2.5'
- '2.7'
- '3.2'
runs_on:
- 'ubuntu-latest'
- 'windows-latest'
include:
- ruby_version: '2.7'
puppet_version: '~> 7.0'
- ruby_version: '3.2'
puppet_version: '~> 8.0'

name: "Acceptance : ${{ matrix.runs_on }} Ruby ${{ matrix.ruby_version }}"
name: "Acceptance : ${{ matrix.runs_on }} Ruby ${{ matrix.ruby_version }} Puppet ${{ matrix.puppet_version }}}"
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_acceptance.yml@main"
secrets: "inherit"
with:
ruby_version: ${{ matrix.ruby_version }}
runs_on: ${{ matrix.runs_on }}
rake_task: 'gem_revendor acceptance_languageserver'
puppet_version: '~> 7.24'
puppet_version: ${{ matrix.puppet_version }}

build:
name: "Build Editor Service"
Expand Down

0 comments on commit 0596510

Please sign in to comment.