From b80b435338ceb6646af2cd0ce44d26955931556b Mon Sep 17 00:00:00 2001 From: Dmytro Parfeniuk Date: Sun, 21 Jul 2024 23:40:40 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20CI=20process=20is=20prepared=20f?= =?UTF-8?q?or=20all=20pyhton=20versions=20>=3D=203.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 16 ++++++---------- .github/workflows/release.yml | 0 2 files changed, 6 insertions(+), 10 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f569cd..573fd71 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,22 +1,18 @@ name: Code Quality Check -on: - pull_request: - branches: - - main +on: ["push"] jobs: - code_quality: + code-quality-check: + name: Code quality check runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8, 3.9, 3.10, 3.11, 3.12] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 - - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} @@ -37,4 +33,4 @@ jobs: python -m isort --check src tests - name: Check types - run: python -m mypy src tests + run: python -m mypy --check-untyped-defs src tests diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index e69de29..0000000