diff options
author | 2025-09-29 17:00:15 +0100 | |
---|---|---|
committer | 2025-09-29 17:00:15 +0100 | |
commit | e540739ceaa056cbcd555cec66d5dfc837a864e4 (patch) | |
tree | b5f1ad5cb288020abd74eb362648b820b18bb01f /.github | |
parent | Remove need for curl install (diff) |
Split python version matrix to multi-line yaml list
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fd38b40..b3d26c5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,17 @@ jobs: build: strategy: matrix: - python_version: ["3.10", 3.10-slim, "3.11", 3.11-slim, "3.12", 3.12-slim, "3.13", 3.13-slim, "3", 3-slim] + python_version: + - "3.10" + - "3.10-slim" + - "3.11" + - "3.11-slim" + - "3.12" + - "3.12-slim" + - "3.13" + - "3.13-slim" + - "3" + - "3-slim" runs-on: ubuntu-latest steps: - name: Checkout code |