From 537c261598ac81d9ae168e164c00831390c4a737 Mon Sep 17 00:00:00 2001 From: Derich Pacheco Date: Tue, 16 Apr 2024 23:04:09 -0300 Subject: [PATCH] ci: fix --- .github/workflows/ci.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6847e6e..6e13d90 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -2,8 +2,8 @@ name: tests on: [push, pull_request] jobs: - ci: - name: Lint, Pyroma, Mypy + lint-mypy: + name: Lint, Mypy runs-on: ubuntu-latest strategy: matrix: @@ -18,8 +18,6 @@ jobs: run: pip install tox - name: Check code quality with flake8 run: tox -e lint - - name: Check package metadata with Pyroma - run: tox -e pyroma - name: Check static typing with MyPy run: tox -e mypy tests: