File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,30 +22,30 @@ jobs:
2222 run : |
2323 python -m pip install -U pip poetry
2424 poetry --version
25- poetry check --no-interaction
25+ poetry check --no-interaction --no-root
2626
2727 - name : Install dependencies
2828 run : |
29- poetry check --no-interaction
29+ poetry check --no-interaction --no-root
3030 poetry --version
3131 poetry install
3232
3333 - name : Lint
3434 run : |
35- poetry check --no-interaction
35+ poetry check --no-interaction --no-root
3636 make lint
3737
3838 - name : Test
3939 run : |
40- poetry check --no-interaction
40+ poetry check --no-interaction --no-root
4141 make tests
4242
4343 - name : Build package
4444 run : |
45- poetry check --no-interaction
45+ poetry check --no-interaction --no-root
4646 poetry build
4747
4848 - name : Publish to PyPI
4949 run : |
50- poetry check --no-interaction
50+ poetry check --no-interaction --no-root
5151 poetry publish -u __token__ -p ${{ secrets.PYPIPASS }}
Original file line number Diff line number Diff line change @@ -23,18 +23,18 @@ jobs:
2323
2424 - name : Install dependencies
2525 run : |
26- poetry check --no-interaction
26+ poetry check --no-interaction --no-root
2727 poetry --version
2828 poetry install
2929
3030 - name : Lint
3131 run : |
32- poetry check --no-interaction
32+ poetry check --no-interaction --no-root
3333 make lint
3434
3535 - name : Test
3636 run : |
37- poetry check --no-interaction
37+ poetry check --no-interaction --no-root
3838 make tests
3939
4040
You can’t perform that action at this time.
0 commit comments