Skip to content

Commit

Permalink
[workflows:tests] change job name to 'test'
Browse files Browse the repository at this point in the history
… and use alternate list syntax for Python versions
  • Loading branch information
mikf committed Nov 10, 2024
1 parent 2b96d63 commit 30ff775
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: tests
name: Tests

on:
workflow_dispatch:
Expand All @@ -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
Expand Down

0 comments on commit 30ff775

Please sign in to comment.