Skip to content

Merge pull request #16 from KCL-BMEIS/15_example_sctipt_fix #58

Merge pull request #16 from KCL-BMEIS/15_example_sctipt_fix

Merge pull request #16 from KCL-BMEIS/15_example_sctipt_fix #58

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
name: pymagewell-linters
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
linters:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[dev,test]
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 src/pymagewell --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 src/tests --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 src/pymagewell --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
flake8 src/tests --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Cache mypy cache
uses: AustinScola/mypy-cache-github-action@v1
- name: Check typing with mypy
run: |
mypy src/pymagewell
mypy src/tests
- name: Fix formatting with Black
run: |
black --line-length 120 --diff --color --check src/pymagewell
black --line-length 120 --diff --color --check src/tests