Skip to content

Commit

Permalink
chore(github): update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
alpden550 committed Oct 31, 2023
1 parent 2ac82bb commit cb5780c
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -21,13 +21,10 @@ jobs:
poetry install
env:
POETRY_VIRTUALENVS_CREATE: false
- name: Analysing the code with mypy
run: |
mypy .
- name: Test the code pytest
run: |
pytest .
- name: Analysing the code with flake8
pytest . -s -v
- name: Analysing the code with Ruff
run: |
pip install flake8
flake8 --max-line-length=120
pip install ruff
ruff .

0 comments on commit cb5780c

Please sign in to comment.