Skip to content

Commit d48ba71

Browse files
💚 Fix version specifiers
1 parent 021e075 commit d48ba71

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/docs.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,13 @@ concurrency:
1919

2020
jobs:
2121
build:
22-
runs-on: ubuntu-latest
23-
env:
24-
PYTHON_VERSION: 3.13
25-
POETRY_VERSION: 2.1.1
22+
strategy:
23+
fail-fast: false
24+
matrix:
25+
python-version: ["3.13"]
26+
poetry-version: ["2.1.1"]
27+
os: ubuntu-latest
28+
runs-on: ${{ matrix.os }}
2629
steps:
2730
- uses: actions/checkout@v4
2831
- uses: actions/setup-python@v5

0 commit comments

Comments
 (0)