Skip to content

Merge pull request #1173 from LedgerHQ/abo_fine_tune_hta #453

Merge pull request #1173 from LedgerHQ/abo_fine_tune_hta

Merge pull request #1173 from LedgerHQ/abo_fine_tune_hta #453

name: Checks on the Python tools
on:
workflow_dispatch:
push:
branches:
- master
pull_request:
jobs:
lint:
name: Client linting
runs-on: ubuntu-latest
steps:
- name: Clone
uses: actions/checkout@v4
- name: Installing PIP dependencies
run: pip install pylint PyGithub GitPython ledgered
- name: Lint Python code
run: pylint --rc setup.cfg .github/workflows/scripts/
mypy:
name: Type checking
runs-on: ubuntu-latest
steps:
- name: Clone
uses: actions/checkout@v4
- name: Installing PIP dependencies
run: pip install mypy PyGithub GitPython ledgered
- name: Mypy type checking
run: mypy .github/workflows/scripts/