We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ceb74ae + 9052957 commit cd289dcCopy full SHA for cd289dc
.github/workflows/build-docs.yml
@@ -40,7 +40,7 @@ jobs:
40
run: timeout 10s poetry run pip --version || rm -rf .venv
41
42
- name: Install dependencies
43
- run: poetry install -E docs
+ run: poetry install --with docs
44
45
- name: Build documentation
46
run: |
.github/workflows/python-test.yml
@@ -48,7 +48,7 @@ jobs:
48
49
50
51
- run: poetry install
+ run: poetry install --all-extras
52
53
- name: Test
54
env:
@@ -57,6 +57,10 @@ jobs:
57
58
- name: Static type check
59
run: poetry run mypy
60
+
61
+ - name: Check dependencies
62
+ run: poetry run deptry .
63
+ if: ${{ matrix.python-version != '3.7' }}
64
65
- name: Upload coverage
66
uses: codecov/codecov-action@v1
0 commit comments