summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmer Katz <omer.drow@gmail.com>2021-04-04 18:07:03 +0300
committerOmer Katz <omer.drow@gmail.com>2021-04-04 18:07:03 +0300
commit66f9dae668fb9e66e9959d78fbb23c1789a55bd8 (patch)
tree11a67b62da43df333f4d558aa2c13aff9619615a
parente032d93bdccd77223418f95001e6e75c1e435eb1 (diff)
downloadkombu-fix-ci.tar.gz
Actually run the linters using tox.fix-ci
There are no environments named py-flake8, py-pydocstyle and py-apicheck.
-rw-r--r--.github/workflows/ci.yaml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 0fbadf08..df924ab4 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -20,11 +20,11 @@ jobs:
- name: Install dependencies
run: pip install --upgrade pip setuptools wheel tox tox-docker
- name: Run flake8
- run: tox -v -e py-flake8 -- -v
+ run: tox -v -e flake8 -- -v
- name: Run pydocstyle
- run: tox -v -e py-pydocstyle -- -v
+ run: tox -v -e pydocstyle -- -v
- name: Run apicheck
- run: tox -v -e py-apicheck -- -v
+ run: tox -v -e apicheck -- -v
#################### Unittests ####################
unittest:
needs: lint