Skip to content

Commit

Permalink
💚 CI process is prepared for all pyhton versions >= 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmytro Parfeniuk committed Jul 22, 2024
1 parent 674f1c1 commit b80b435
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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 }}

Expand All @@ -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
Empty file removed .github/workflows/release.yml
Empty file.

0 comments on commit b80b435

Please sign in to comment.