tests: Remove external services requirement from elt-common e2e tests… #189
This file contains hidden or 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 checks | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| staticcheck: | |
| name: static checks | |
| runs-on: ubuntu-slim | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| - name: "Install prek" | |
| run: > | |
| python -m pip install prek | |
| - name: "Run prek" | |
| run: > | |
| prek --all-files --verbose |