Skip to content

Commit

Permalink
Merge pull request #254 from gridhead/compat
Browse files Browse the repository at this point in the history
Add compatibility for Python 3.12 and Python 3.13 testing
  • Loading branch information
gridhead authored Jan 3, 2025
2 parents d00bcda + 831594e commit 6afb846
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/gnul.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
ci-make-gnul:

runs-on: ubuntu-latest

container: fedorapython/fedora-python-tox:latest

strategy:
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/qlty.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
---
name: Checking code quality

on: [push, pull_request]

jobs:

ci-qlty:

runs-on: ubuntu-latest

container: fedorapython/fedora-python-tox:latest

strategy:
fail-fast: false

steps:
- uses: actions/checkout@v4

- name: Checkout the codebase current state
uses: actions/checkout@v4

- name: Install the base dependencies
run: |
Expand Down
22 changes: 18 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,32 @@
---
name: Checking code functionality

on: [push, pull_request]

jobs:

ci-test:

runs-on: ubuntu-latest
container: fedora:41

strategy:
fail-fast: false

matrix:
tox-env: ["py313-dist"]
include:
- tox-env: "py312-dist"
container: "fedora:40"
- tox-env: "py313-dist"
container: "fedora:41"

container: ${{ matrix.container }}

steps:
- uses: actions/checkout@v4

- name: Update existing packages
- name: Checkout the codebase current state
uses: actions/checkout@v4

- name: Update the existing packages
run: |
dnf update --refresh --assumeyes
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/wipe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,13 @@ on:
- cron: 0 0 * * *

jobs:

ci-wipe:

runs-on: ubuntu-latest

steps:

- name: Manage artifacts to retain four recent artifacts
run: |
KEEP_QANT=4
Expand Down

0 comments on commit 6afb846

Please sign in to comment.