diff options
| -rw-r--r-- | .github/workflows/forms-backend.yml | 5 | 
1 files changed, 1 insertions, 4 deletions
| diff --git a/.github/workflows/forms-backend.yml b/.github/workflows/forms-backend.yml index e84d80b..ffc0eb7 100644 --- a/.github/workflows/forms-backend.yml +++ b/.github/workflows/forms-backend.yml @@ -40,13 +40,10 @@ jobs:          if: steps.python_cache.outputs.cache-hit != 'true'          run: |            poetry install -           -      - name: Activate Poetry virtualenv -        run: "poetry shell"        # This implemention allows showing linting errors in PRs under Files tab.        - name: Run flake8 -        run: "flake8 --format='::error file=%(path)s,line=%(row)d,col=%(col)d::[flake8] %(code)s: %(text)s' --verbose" +        run: "poetry run flake8 --format='::error file=%(path)s,line=%(row)d,col=%(col)d::[flake8] %(code)s: %(text)s' --verbose"    build:      name: Build & Push | 
