Skip to content

Commit ac38b62

Browse files
committed
Update pipeline to run and build on more python versions
1 parent 5bf281b commit ac38b62

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/pipeline.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,17 @@ on:
1313
jobs:
1414
build_test:
1515
name: Build artefacts
16-
runs-on: Windows-latest
16+
runs-on: Windows-2025
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
py_ver: [{version: '3.9'}] # , {version: '3.10'}, {version: '3.11'}]
20+
py_ver: [
21+
{version: '3.9'},
22+
{version: '3.10'},
23+
{version: '3.11'},
24+
{version: '3.12'},
25+
{version: '3.13'},
26+
]
2127
steps:
2228
- uses: actions/checkout@v4
2329
with:

0 commit comments

Comments
 (0)