File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed
Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -13,28 +13,27 @@ jobs:
1313 fail-fast : false
1414 matrix :
1515 os : [ubuntu-latest, windows-latest, macos-latest]
16- python-version : ["3.11 "]
16+ python-version : ["3.10 "]
1717
1818 steps :
1919 - name : Checkout repository
20- uses : actions/checkout@v4
20+ uses : actions/checkout@v3
2121
2222 - name : Set up Python ${{ matrix.python-version }} on ${{matrix.os}}
23- uses : actions/setup-python@v5
23+ uses : actions/setup-python@v4
2424 with :
2525 python-version : ${{ matrix.python-version }}
2626
2727 - name : Install Poetry
28- shell : bash
2928 run : |
30- curl -sSL https://install.python-poetry.org | python -
29+ curl -sSL https://install.python-poetry.org | python3 -
3130 echo "$HOME/.local/bin" >> $GITHUB_PATH
3231
3332 - name : Configure Poetry and install dependencies
34- shell : bash
3533 run : |
3634 poetry config virtualenvs.create false
3735 poetry install --no-interaction --with dev
3836
3937 - name : Run tests
40- run : poetry run pytest
38+ run : |
39+ poetry run pytest
You can’t perform that action at this time.
0 commit comments