Skip to content

Commit 053fab2

Browse files
committed
Extend checks for more Python-s
Add a matrix in order to check at least: - oldest Python version - default Python version on pkgsrc-current - newest Python version Related to #49 and #71.
1 parent 7112c1f commit 053fab2

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/python.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,16 @@ jobs:
1212
build:
1313
name: Check and test transferwee
1414
runs-on: ubuntu-latest
15+
strategy:
16+
matrix:
17+
version: ['3.8', '3.10', 3.12']
1518
steps:
1619
- name: Checkout code
1720
uses: actions/checkout@v3
18-
- name: Set up Python 3.10
21+
- name: Set up Python ${{ matrix.version }}
1922
uses: actions/setup-python@v4
2023
with:
21-
python-version: '3.10'
24+
python-version: ${{ matrix.version }}
2225
- name: Cache pip
2326
uses: actions/cache@v3
2427
with:

0 commit comments

Comments
 (0)