File tree Expand file tree Collapse file tree 4 files changed +306
-47
lines changed
Expand file tree Collapse file tree 4 files changed +306
-47
lines changed Original file line number Diff line number Diff line change @@ -23,12 +23,11 @@ jobs:
2323 uses : actions/setup-python@v2
2424 with :
2525 python-version : ${{ matrix.python-version }}
26+ - name : Set up Poetry
27+ 28+ with :
29+ poetry-version : 1.1.5
2630 - name : Install dependencies
27- run : |
28- python -m pip install --upgrade pip setuptools wheel
29- pip install -e .
30- pip install -e .[test]
31- pip install -e .[setup]
32- - name : Test with pytest
33- run : |
34- pytest
31+ run : poetry install
32+ - name : Run tests
33+ run : poetry run pytest
Original file line number Diff line number Diff line change 1919 with :
2020 poetry-version : 1.1.5
2121 - name : Build
22- run : poetry build
22+ run : |
23+ poetry install
24+ poetry build
2325 - name : Create release
2426 uses : actions/create-release@v1
2527 env :
You can’t perform that action at this time.
0 commit comments