aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2020-11-22 11:28:22 +0200
committerGravatar GitHub <[email protected]>2020-11-22 11:28:22 +0200
commitacebea253997a4830ca2c0b73874b007e8ee6a59 (patch)
tree1d89e47b3774ae88c345cb7ae45f2f5eda6fc228
parentRemove unnecessary env variables and fix Poetry install (diff)
Fix flake8 step command and remove path adding step
Removed 2nd ', what gave error. Removed adding environment variable to PATH that don't exist.
-rw-r--r--.github/workflows/forms-backend.yml5
1 files changed, 1 insertions, 4 deletions
diff --git a/.github/workflows/forms-backend.yml b/.github/workflows/forms-backend.yml
index 908a186..c7ac36b 100644
--- a/.github/workflows/forms-backend.yml
+++ b/.github/workflows/forms-backend.yml
@@ -12,9 +12,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- - name: Add custom PYTHONUSERBASE to PATH
- run: echo '${{ env.PYTHONUSERBASE }}/bin/' >> $GITHUB_PATH
-
- name: Checkout repository
uses: actions/checkout@v2
@@ -46,7 +43,7 @@ jobs:
# 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''"
+ run: "flake8 --format='::error file=%(path)s,line=%(row)d,col=%(col)d::[flake8] %(code)s: %(text)s'"
build:
name: Build & Push