diff options
author | 2020-11-17 00:01:38 +0100 | |
---|---|---|
committer | 2020-11-17 00:01:38 +0100 | |
commit | aae7e06af75324633ac91ab5a0e381e17dc36509 (patch) | |
tree | 352c831a9f4a490e6601e694d81e692b18a19706 | |
parent | Run linter in docker container (diff) |
Change specification of working directory
-rw-r--r-- | .github/workflows/lint-test.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 6365eee..ab4ae11 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -55,8 +55,8 @@ jobs: -e PYTHONDONTWRITEBYTECODE=1 \ -e PIPENV_PIPFILE='/snekbox/Pipfile\' \ -e ENV='${PWD}/scripts/.profile' \ - --volume '${PWD}':'${PWD}' \ - --workdir '${PWD}'\ + --volume '${{ github.workspace }}':'${{ github.workspace }}' \ + --workdir '${{ github.workspace }}'\ --entrypoint /bin/bash \ ghcr.io/python-discord/snekbox-base:latest" |