Skip to content

Commit ee903ab

Browse files
committed
wip
1 parent 05054a8 commit ee903ab

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/check.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ on:
1414
jobs:
1515
check:
1616

17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-22.04
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
21+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
2222
steps:
2323
- uses: actions/checkout@v4
2424
with:
@@ -33,10 +33,12 @@ jobs:
3333
run: |
3434
python3 -m pip install --user pipx
3535
python3 -m pipx ensurepath
36-
pipx install poetry==1.8.5 --python ${{ steps.setup-python.outputs.python-path }}
36+
pipx install poetry==1.8.5
3737
3838
- name: Setup a local virtual environment
3939
run: |
40+
poetry env use ${{ steps.setup-python.outputs.python-path }}
41+
poetry run python --version
4042
poetry config virtualenvs.create true --local
4143
poetry config virtualenvs.in-project true --local
4244

.github/workflows/lint.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,12 @@ jobs:
2222
run: |
2323
python3 -m pip install --user pipx
2424
python3 -m pipx ensurepath
25-
pipx install poetry==1.8.5 --python ${{ steps.setup-python.outputs.python-path }}
26-
27-
- name: Check python version
28-
run: |
29-
poetry run python --version
25+
pipx install poetry==1.8.5
3026
3127
- name: Setup a local virtual environment
3228
run: |
29+
poetry env use ${{ steps.setup-python.outputs.python-path }}
30+
poetry run python --version
3331
poetry config virtualenvs.create true --local
3432
poetry config virtualenvs.in-project true --local
3533

0 commit comments

Comments
 (0)