Skip to content

Commit

Permalink
Enable Actions checks on root Python scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
solidpixel committed Jan 7, 2025
1 parent fee830e commit c76c8ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/build_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,13 @@ jobs:
- name: Check code style
run: |
python3 -m pycodestyle ./*.py
python3 -m pycodestyle ./lglpy
python3 -m pycodestyle ./generator
- name: Check typing
run: |
python3 -m mypy ./*.py
python3 -m mypy ./lglpy
python3 -m mypy ./generator
Expand Down
2 changes: 1 addition & 1 deletion lgl_android_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def get_package_name(

def get_layer_metadata(
layer_dirs: list[str],
need_32bit: bool, need_symbols: bool) -> Optional[str]:
need_32bit: bool, need_symbols: bool) -> list[LayerMeta]:
'''
Get the layer metadata for all of the selected layers.
Expand Down

0 comments on commit c76c8ff

Please sign in to comment.