1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-21 18:22:30 +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: on:
workflow_dispatch: workflow_dispatch:
@ -10,13 +10,23 @@ on:
- master - master
jobs: jobs:
build: test:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
strategy: strategy:
fail-fast: false fail-fast: false
matrix: 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: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4