removed frontend variables from deplot_stage workflow #216
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: Check codestyle | |
on: | |
pull_request: | |
branches: | |
- develop | |
- master | |
jobs: | |
codestyle: | |
name: Check codestyle | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Check out the repo | |
uses: actions/checkout@v3 | |
- | |
name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- | |
name: Install Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
version: 1.5.1 | |
- | |
name: Install Dependencies | |
run: poetry install | |
- | |
name: Lint with flake8 | |
run: poetry run flake8 . | |
- | |
name: Check black codestyle | |
run: poetry run black --check --line-length=100 . |