Skip to content

Commit

Permalink
Update github workflows
Browse files Browse the repository at this point in the history
Signed-off-by: Alina Buzachis <[email protected]>
  • Loading branch information
alinabuzachis committed Dec 6, 2023
1 parent 584a631 commit d05be4f
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 2 deletions.
30 changes: 29 additions & 1 deletion .github/workflows/sanity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,32 @@ on: [workflow_call] # allow this workflow to be called from other workflows

jobs:
sanity:
uses: ansible-network/github_actions/.github/workflows/sanity.yml@main
# stable-6 sanity test versions locked based on tested versions as of 7.0.0 release
uses: ansible-network/github_actions/.github/workflows/sanity.yml@b2b68168f3040e55553664b1fbcdc19cf10f49bc
with:
matrix_include: >-
[]
# devel and milestone are a moving target while we should fix issues in the
# main and our current major releases, they're no always appropriate to
# backport to older releases.
matrix_exclude: >-
[
{
"ansible-version": "milestone"
},
{
"ansible-version": "devel"
},
{
"ansible-version": "stable-2.14",
"python-version": "3.12"
},
{
"ansible-version": "stable-2.15",
"python-version": "3.12"
},
{
"ansible-version": "stable-2.16",
"python-version": "3.9"
}
]
26 changes: 25 additions & 1 deletion .github/workflows/units.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,28 @@ on: [workflow_call] # allow this workflow to be called from other workflows

jobs:
unit-source:
uses: ansible-network/github_actions/.github/workflows/unit_source.yml@main
# stable-6 unit test versions locked based on tested versions as of 7.0.0 release
uses: ansible-network/github_actions/.github/workflows/unit_source.yml@b2b68168f3040e55553664b1fbcdc19cf10f49bc
with:
# devel and milestone are a moving target while we should fix issues in the
# main and our current major releases, they're no always appropriate to
# backport to older releases.
matrix_exclude: >-
[
{
"ansible-version": "milestone"
},
{
"ansible-version": "devel"
},
{
"python-version": "3.11"
},
{
"python-version": "3.12"
},
{
"ansible-version": "stable-2.16",
"python-version": "3.9"
}
]

0 comments on commit d05be4f

Please sign in to comment.