This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
Add ability to have a different name for folder #32
Workflow file for this run
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: lint_python | |
on: [pull_request, push] | |
jobs: | |
lint_python: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- run: pip install --upgrade pip wheel | |
- run: pip install bandit black codespell flake8 flake8-bugbear | |
flake8-comprehensions isort requests | |
- run: ./deploy.sh validate |