1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-21 10:12:29 +01:00

[workflows:tests] change job name to 'test'

… and use alternate list syntax for Python versions
This commit is contained in:
Mike Fährmann 2024-11-10 21:10:08 +01:00
parent 2b96d638dc
commit 30ff775382
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

View File

@ -1,4 +1,4 @@
name: tests
name: Tests
on:
workflow_dispatch:
@ -10,13 +10,23 @@ on:
- master
jobs:
build:
test:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.9"]
python-version:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "pypy3.9"
steps:
- uses: actions/checkout@v4