Add Kindle lemma db to all "en_en" and "en_zh" tar files #184
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: Lint Code Base | |
on: | |
workflow_dispatch: | |
push: | |
branches: # ignore pushed tags | |
- "*" | |
paths: | |
- '**.py' | |
- '**.md' | |
pull_request: | |
paths: | |
- '**.py' | |
- '**.md' | |
permissions: | |
contents: read | |
pull-requests: read | |
jobs: | |
lint: | |
name: Lint Code Base | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
cache: 'pip' | |
- run: python -m pip install -e .[dev] | |
- run: python -m mypy -p proficiency | |
- run: python -m ruff check . | |
- run: python -m ruff format --diff . | |
- uses: crate-ci/typos@v1.24.1 |