Skip to content

decomplint: check only the specified module (#63) #167

decomplint: check only the specified module (#63)

decomplint: check only the specified module (#63) #167

Workflow file for this run

name: Format
on: [push, pull_request]
jobs:
python-format:
name: 'Python Format'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install python libraries
shell: bash
run: |
pip install -r requirements.txt -r requirements-tests.txt
- name: Run black
shell: bash
run: black --check .
- name: Run pylint
shell: bash
run: pylint reccmp tests
- name: Run mypy
shell: bash
run: mypy ./reccmp