File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change 77 branches : [main]
88
99jobs :
10- os-tests :
10+ os-compatibility- tests :
1111 runs-on : ${{ matrix.os }}
1212 strategy :
1313 fail-fast : false
1616 python-version : ["3.10"]
1717
1818 steps :
19- - name : Checkout repository
20- uses : actions/checkout@v3
19+ - name : Checkout code
20+ uses : actions/checkout@v4
2121
2222 - name : Set up Python ${{ matrix.python-version }} on ${{matrix.os}}
2323 uses : actions/setup-python@v4
@@ -27,13 +27,13 @@ jobs:
2727 - name : Install Poetry
2828 run : |
2929 curl -sSL https://install.python-poetry.org | python3 -
30- echo "$HOME/.local/bin" >> $GITHUB_PATH
30+ echo "export PATH=\" $HOME/.local/bin:$PATH\"" >> $GITHUB_ENV
3131
32- - name : Configure Poetry and install dependencies
33- run : |
34- poetry config virtualenvs.create false
35- poetry install --no-interaction --with dev
32+ - name : Install poetry-dynamic-versioning plugin
33+ run : poetry self add "poetry-dynamic-versioning[plugin]"
34+
35+ - name : Install dependencies
36+ run : poetry install --no-interaction --no-ansi
3637
3738 - name : Run tests
38- run : |
39- poetry run pytest
39+ run : poetry run pytest
You can’t perform that action at this time.
0 commit comments