Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
bodsch committed Nov 1, 2023
1 parent d63ca64 commit 4f49315
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 17 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/configured.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
fail-fast: false
matrix:
image:
- debian:11
- debian:12
python_version:
- "3.11.3"
ansible-version:
- '6.7'
scenario:
Expand All @@ -31,11 +33,12 @@ jobs:
uses: actions/checkout@v3
with:
path: 'ansible-container'
ref: ${{ github.event.workflow_run.head_branch }}

- name: 🐍 set up python
uses: actions/setup-python@v4
with:
python-version: '3.x'
python-version: "${{ matrix.python_version }}"

- name: install dependencies
run: |
Expand Down
13 changes: 11 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ jobs:
matrix:
image:
- archlinux:latest
python_version:
- "3.10.11"
- "3.11.3"
ansible-version:
- '6.7'
scenario:
Expand All @@ -31,11 +34,12 @@ jobs:
uses: actions/checkout@v3
with:
path: 'ansible-container'
ref: ${{ github.event.workflow_run.head_branch }}

- name: 🐍 set up python
uses: actions/setup-python@v4
with:
python-version: '3.x'
python-version: "${{ matrix.python_version }}"

- name: install dependencies
run: |
Expand Down Expand Up @@ -64,6 +68,10 @@ jobs:
image:
- debian:10
- debian:11
- debian:12
python_version:
- "3.10.11"
- "3.11.3"
ansible-version:
- '6.7'
scenario:
Expand All @@ -73,11 +81,12 @@ jobs:
uses: actions/checkout@v3
with:
path: 'ansible-container'
ref: ${{ github.event.workflow_run.head_branch }}

- name: 🐍 set up python
uses: actions/setup-python@v4
with:
python-version: '3.x'
python-version: "${{ matrix.python_version }}"

- name: install dependencies
run: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/many-property-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,11 @@ jobs:
fail-fast: false
matrix:
image:
- debian:11
- debian:12
ansible-version:
- '6.7'
python:
# '3.x'
- '3.10'
python_version:
- "3.11.3"
scenario:
- many-properties

Expand All @@ -35,11 +34,12 @@ jobs:
uses: actions/checkout@v3
with:
path: 'ansible-container'
ref: ${{ github.event.workflow_run.head_branch }}

- name: 🐍 set up python
uses: actions/setup-python@v4
with:
python-version: "${{ matrix.python }}"
python-version: "${{ matrix.python_version }}"

- name: install dependencies
run: |
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/multiple-container-with-filter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,24 @@ jobs:
fail-fast: false
matrix:
image:
- debian:11
- debian:12
ansible-version:
- '6.7'
python_version:
- "3.11.3"
scenario:
- multiple-container-with-filter
steps:
- name: check out the codebase.
uses: actions/checkout@v3
with:
path: 'ansible-container'
ref: ${{ github.event.workflow_run.head_branch }}

- name: 🐍 set up python
uses: actions/setup-python@v4
with:
python-version: '3.x'
python-version: "${{ matrix.python_version }}"

- name: install dependencies
run: |
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/multiple-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,24 @@ jobs:
fail-fast: false
matrix:
image:
- debian:11
- debian:12
ansible-version:
- '6.7'
python_version:
- "3.11.3"
scenario:
- multiple-container
steps:
- name: check out the codebase.
uses: actions/checkout@v3
with:
path: 'ansible-container'
ref: ${{ github.event.workflow_run.head_branch }}

- name: 🐍 set up python
uses: actions/setup-python@v4
with:
python-version: '3.x'
python-version: "${{ matrix.python_version }}"

- name: install dependencies
run: |
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/update-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,24 @@ jobs:
fail-fast: false
matrix:
image:
- debian:11
- debian:12
ansible-version:
- '6.7'
python_version:
- "3.11.3"
scenario:
- update-container
steps:
- name: check out the codebase.
uses: actions/checkout@v3
with:
path: 'ansible-container'
ref: ${{ github.event.workflow_run.head_branch }}

- name: 🐍 set up python
uses: actions/setup-python@v4
with:
python-version: '3.x'
python-version: "${{ matrix.python_version }}"

- name: install dependencies
run: |
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/update-properties.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,24 @@ jobs:
fail-fast: false
matrix:
image:
- debian:11
- debian:12
ansible-version:
- '6.7'
python_version:
- "3.11.3"
scenario:
- update-properties
steps:
- name: check out the codebase.
uses: actions/checkout@v3
with:
path: 'ansible-container'
ref: ${{ github.event.workflow_run.head_branch }}

- name: 🐍 set up python
uses: actions/setup-python@v4
with:
python-version: '3.x'
python-version: "${{ matrix.python_version }}"

- name: install dependencies
run: |
Expand Down

0 comments on commit 4f49315

Please sign in to comment.