Skip to content

Commit

Permalink
ci: add mypy ci step
Browse files Browse the repository at this point in the history
  • Loading branch information
yagebu committed Jan 3, 2025
1 parent 2c82e5d commit 2aec7f8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,14 @@ jobs:
python-version: '3.11'
- run: pip install ruff
- run: ruff check beangulp/ examples/
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- run: pip install . mypy types-python-dateutil beancount@git+https://github.com/beancount/beancount.git
- run: mypy beangulp examples

0 comments on commit 2aec7f8

Please sign in to comment.