Skip to content

chore(deps-dev): Bump pydevd-pycharm from 233.15026.15 to 242.18071.12 #2146

chore(deps-dev): Bump pydevd-pycharm from 233.15026.15 to 242.18071.12

chore(deps-dev): Bump pydevd-pycharm from 233.15026.15 to 242.18071.12 #2146

Workflow file for this run

name: Python Check and Unit Test
on:
push:
branches:
- main
pull_request:
branches:
- '*'
paths-ignore:
- '**/*.md'
- '**/*.jpg'
- '**/README.txt'
- '**/LICENSE.txt'
- 'docs/**'
- 'ISSUE_TEMPLATE/**'
- '**/remove-old-artifacts.yml'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
poetry-version: ["1.8.2"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
uses: abatilo/actions-poetry@v3
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: poetry install
- name: Run mypy - static type checking
run: poetry run mypy .
- name: Run flake8 - linting
run: poetry run flake8 .
- name: Run isort - dependency import sorting check
run: poetry run isort --check-only .
- name: Run unit tests
run: poetry run pytest ./tests/unit -Werror