Skip to content

Commit

Permalink
fix(CI): Break up workflows and use templates
Browse files Browse the repository at this point in the history
  • Loading branch information
timothystewart6 committed Oct 29, 2023
1 parent c2a3b9f commit 1e06289
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/molecule-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ jobs:
fail-fast: false
env:
PYTHON_VERSION: "3.11"

runs:
using: "composite"
steps:
- name: Check out the codebase
uses: actions/checkout@e2f20e631ae6d7dd3b768f56a5d2af784dd54791 # v3 2.5.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
jobs:
steps:
- name: Default
uses: .github/workflows/molecule-template.yml
uses: ./.github/workflows/molecule-template.yml
molecule:
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-ipv6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
jobs:
steps:
- name: IPv6
uses: .github/workflows/molecule-template.yml
uses: ./.github/workflows/molecule-template.yml
molecule:
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-single-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
jobs:
steps:
- name: Single Node
uses: .github/workflows/molecule-template.yml
uses: ./.github/workflows/molecule-template.yml
molecule:
strategy:
matrix:
Expand Down

0 comments on commit 1e06289

Please sign in to comment.