Skip to content

Commit 891ec78

Browse files
committed
update: CI/CD
1 parent 66c3cf8 commit 891ec78

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/cd.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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 }}

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)