Tighten Linux apt install set for setup script #52
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
| # GitHub action for pre-commit hook | |
| # | |
| # While it would be desirable to use pre-commit.ci, I do not | |
| # see a lot of support for installing other tools in the | |
| # pre-commit CI image. | |
| name: pre-commit | |
| on: | |
| push: | |
| branches: [develop] | |
| pull_request: | |
| branches: [develop] | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-python@v2 | |
| - uses: pre-commit/action@v2.0.3 |