Skip to content
This repository has been archived by the owner on Jan 30, 2024. 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 5, 2023
1 parent 9fa6c3c commit c60d871
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/configured-with-ldap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
matrix:
image:
- debian:12
python_version:
- "3.11.3"
ansible-version:
- '6.7'
scenario:
Expand All @@ -38,7 +40,7 @@ jobs:
- 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
4 changes: 3 additions & 1 deletion .github/workflows/configured-with-mariadb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
matrix:
image:
- debian:12
python_version:
- "3.11.3"
ansible-version:
- '6.7'
scenario:
Expand All @@ -38,7 +40,7 @@ jobs:
- 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
2 changes: 1 addition & 1 deletion .github/workflows/configured.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- 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
11 changes: 9 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
image:
- archlinux:latest
# - artixlinux:latest
python_version:
- "3.10.11"
- "3.11.3"
ansible-version:
- '6.7'
scenario:
Expand All @@ -38,7 +41,7 @@ jobs:
- 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 @@ -68,6 +71,10 @@ jobs:
- debian:11
- debian:12
- ubuntu:20.04
- ubuntu:22.04
python_version:
- "3.10.11"
- "3.11.3"
ansible-version:
- '6.7'
scenario:
Expand All @@ -83,7 +90,7 @@ jobs:
- 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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

# Ansible Role: `gitea`


## usage
Expand Down

0 comments on commit c60d871

Please sign in to comment.