We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e681d1f commit afc11c3Copy full SHA for afc11c3
1 file changed
.github/workflows/test.yml
@@ -19,14 +19,14 @@ jobs:
19
python -m pip install --upgrade setuptools wheel virtualenv
20
pip install poetry
21
poetry config virtualenvs.create true
22
- poetry install
+ poetry install --with dev
23
- name: Install Pandoc # apt version seems too old
24
uses: r-lib/actions/setup-pandoc@v2
25
- name: Linting Checks
26
run: |
27
- black --check .
28
- isort --check-only in2lambda docs
29
- pydocstyle --convention=google in2lambda
+ poetry run black --check .
+ poetry run isort --check-only in2lambda docs
+ poetry run pydocstyle --convention=google in2lambda
30
- name: pytest
31
run: pytest --cov-report=xml:coverage.xml --cov=in2lambda --doctest-modules in2lambda
32
- name: Upload coverage to Codecov
0 commit comments