Merge pull request #19 from bjcoleman/remove_extra_group_structs #49
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 Analysis | |
| on: [push, pull_request] | |
| jobs: | |
| static-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v2 # Checkout the repository content to github runner. | |
| - name: Setup Repo & Environment | |
| uses: ./.github/actions/setup_venv | |
| - name: Execute Static Analysis | |
| run: .venv/bin/pylint src tests | |