Add missing dependency to HTA #474
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python Lint | |
on: pull_request | |
jobs: | |
python-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Setup Python Environment | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10.14' | |
- name: Install Dependencies | |
run: | | |
pip install -r requirements-dev.txt | |
- name: Lint Python Code | |
run: | | |
ruff format . | |
ruff check . | |
- name: Run Pyright | |
run: | | |
pyright | |
- name: Run vulture check | |
run: vulture src/ tests/ |