|
|
@ -9,11 +9,11 @@ jobs:
|
|
|
|
steps:
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
|
|
|
- uses: actions/checkout@master
|
|
|
|
- uses: actions/setup-python@master
|
|
|
|
- uses: actions/setup-python@master
|
|
|
|
- run: pip install black codespell contextvars flake8 graphviz isort jinja2 poetry pytest
|
|
|
|
- run: pip install black codespell flake8 isort poetry pytest
|
|
|
|
- run: black . --diff || true
|
|
|
|
- run: black . --diff || true
|
|
|
|
- run: codespell --quiet-level=2 || true # --ignore-words-list="" --skip=""
|
|
|
|
- run: codespell --quiet-level=2 || true # --ignore-words-list="" --skip=""
|
|
|
|
- run: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
|
|
|
|
- run: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
|
|
|
|
- run: isort --recursive . || true
|
|
|
|
- run: isort --recursive . || true
|
|
|
|
- run: pip install poetry
|
|
|
|
- run: pip install poetry
|
|
|
|
- run: poetry install
|
|
|
|
- run: poetry install
|
|
|
|
- run: pytest
|
|
|
|
- run: poetry run pytest
|
|
|
|