Removes .py files #5
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: Static Analysis | |
on: | |
push: | |
branches: | |
- "*" | |
jobs: | |
linting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
- name: Install Poetry | |
run: pipx install poetry | |
- name: Install dependencies and build package | |
run: | | |
poetry install | |
- name: Run pre-push script | |
run: poetry run python pre_push.py --static |