mirror of
https://github.com/novoid/appendfilename.git
synced 2026-06-14 04:11:19 +00:00
test(pytest.yml): update scope of Image runners
The scope of the environments the pytest checks are performed was updated (ubuntu-24.04, macos-15, windows-2025; Python 3.9 and 3.13). The checks now equally are available on push to a non default branch `dev` (development/feature branch). Signed-off-by: Norwid Behrnd <nbehrnd@yahoo.com>
This commit is contained in:
parent
683be702bb
commit
1eed973fc2
1 changed files with 7 additions and 6 deletions
13
.github/workflows/pytest.yml
vendored
13
.github/workflows/pytest.yml
vendored
|
|
@ -3,15 +3,16 @@ name: CI_pytest_appendfilename
|
||||||
# name : pytest.yml
|
# name : pytest.yml
|
||||||
# purpose : regularly run pytest on appendfilename
|
# purpose : regularly run pytest on appendfilename
|
||||||
# date : [2024-10-31 Thu]
|
# date : [2024-10-31 Thu]
|
||||||
# edit : [2024-11-22 Fri]
|
# edit : [2025-05-07 Wed]
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master # additions to the principal branch "master"
|
- master
|
||||||
|
- dev
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- master # PRs to enter the principal branch "master"
|
- master
|
||||||
workflow_dispatch: # provide a manual trigger
|
workflow_dispatch: # provide a manual trigger
|
||||||
# schedule:
|
# schedule:
|
||||||
# - cron: "0 0 1 * *" # once each 1st of a month, at 00:00 UTC (cf. https://crontab.guru/)
|
# - cron: "0 0 1 * *" # once each 1st of a month, at 00:00 UTC (cf. https://crontab.guru/)
|
||||||
|
|
@ -22,9 +23,9 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
# for a factorial test, an explicit selection of GitHUb runner images
|
# for a factorial test, an explicit selection of GitHUb runner images
|
||||||
# https://github.com/actions/runner-images?tab=readme-ov-file#available-images
|
# https://github.com/actions/runner-images?tab=readme-ov-file#available-images
|
||||||
# state of commit 23478d3 as visited on 2024-11-11 Mon
|
# state of commit 23478d3 as visited on 2025-05-07 Wed
|
||||||
os: [ubuntu-20.04, ubuntu-22.04,ubuntu-24.04, windows-2019, windows-2022, macos-14]
|
os: [ubuntu-24.04, macos-15, windows-2025]
|
||||||
python-version: ["3.10", "3.12"]
|
python-version: ["3.9", "3.13"]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
timeout-minutes: 5 # Timeout for each job individually
|
timeout-minutes: 5 # Timeout for each job individually
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue