diff options
author | 2020-11-18 18:50:34 +0100 | |
---|---|---|
committer | 2020-11-18 18:50:34 +0100 | |
commit | 54144e549eb1b1d15558efbcd396d1bb79e64c59 (patch) | |
tree | a9192b19ea1acc54540671be0f22f8840e2a3f0f | |
parent | Remove CI dependency that is no longer in use (diff) |
Remove escape sequence and improve job name
I accidentally escaped a single quote in a run command; I've removed it
now. I also changed the job name to `lint-test-build-push` to better
reflect the contents of the job.
-rw-r--r-- | .github/workflows/lint-test-build-push.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/lint-test-build-push.yaml b/.github/workflows/lint-test-build-push.yaml index 641b4e6..4222ce7 100644 --- a/.github/workflows/lint-test-build-push.yaml +++ b/.github/workflows/lint-test-build-push.yaml @@ -8,7 +8,7 @@ on: jobs: - lint-test: + lint-test-build-push: runs-on: ubuntu-latest env: # Determine whether or not we should build the @@ -86,7 +86,7 @@ jobs: --privileged \ --hostname pdsnk-dev \ -e PYTHONDONTWRITEBYTECODE=1 \ - -e PIPENV_PIPFILE='/snekbox/Pipfile\' \ + -e PIPENV_PIPFILE='/snekbox/Pipfile' \ -e ENV=\"${PWD}/scripts/.profile\" \ --volume \"${PWD}\":\"${PWD}\" \ --workdir \"${PWD}\" \ |