pyhOn/.github/workflows/python-check.yml

41 lines
943 B
YAML
Raw Permalink Normal View History

2023-04-09 15:47:33 -06:00
name: Python check
on:
push:
2023-04-10 12:31:55 -06:00
branches: [ "main" ]
2023-04-09 15:47:33 -06:00
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
2023-11-19 15:50:03 -07:00
python-version: ["3.10", "3.11", "3.12"]
2023-04-09 15:47:33 -06:00
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
2023-04-15 15:02:37 -06:00
python -m pip install -r requirements_dev.txt
2023-04-09 15:47:33 -06:00
- name: Lint with flake8
run: |
2023-07-18 13:31:16 -06:00
flake8 . --count --statistics
2023-04-15 07:55:22 -06:00
- name: Type check with mypy
run: |
mypy pyhon/
2023-07-12 11:36:32 -06:00
- name: Analysing the code with pylint
run: |
2023-10-01 17:38:40 -06:00
pylint $(git ls-files '*.py')
2023-04-09 15:47:33 -06:00
- name: Check black style
run: |
black . --check