We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e122ac commit c2b21feCopy full SHA for c2b21fe
1 file changed
.github/workflows/local-setup-test.yaml
@@ -21,6 +21,11 @@ jobs:
21
- name: Install Python Dependencies
22
run: |
23
poetry install
24
+ - name: Run style and type checks
25
+ run: |
26
+ poetry run ruff format && poetry run ruff check
27
+ poetry run mypy --ignore-missing-imports --disallow-untyped-calls --disallow-untyped-defs --disallow-incomplete-defs \
28
+ data_transformations tests
29
- name: Run local unit tests
30
31
poetry run python -m pytest tests/unit
0 commit comments