From 628399d70367284164c4c1db90c64795fbafee1a Mon Sep 17 00:00:00 2001 From: Marco Favorito Date: Fri, 22 Sep 2023 09:40:40 +0200 Subject: [PATCH] ci: run all tox testenv in a single command --- .github/workflows/lint.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index f0056542..71514836 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -27,15 +27,11 @@ jobs: run: pip install tox - name: Code style check run: | - tox -e ruff-check - tox -e black-check - tox -e vulture - tox -e darglint + tox -e black-check,ruff-check,vulture,darglint - name: Static type check run: tox -e mypy - name: Check copyright run: tox -e check-copyright - name: Misc checks run: | - tox -e bandit - tox -e safety \ No newline at end of file + tox -e bandit,safety \ No newline at end of file