diff options
author | 2020-11-16 23:46:18 +0100 | |
---|---|---|
committer | 2020-11-16 23:46:18 +0100 | |
commit | 13ea11c0ec4cc339aed76f676c478452a742591d (patch) | |
tree | 903e9c525583e247c0c715f4db903481d386b85d | |
parent | Run linter in docker container (diff) |
Run linter in docker container
-rw-r--r-- | .github/workflows/lint-test.yaml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index f9ab661..6365eee 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -46,19 +46,19 @@ jobs: run: docker image ls - name: Start Container - run: 'docker run \ + run: "docker run \ --tty \ --detach \ --name snekbox_test \ --privileged \ --hostname pdsnk-dev \ -e PYTHONDONTWRITEBYTECODE=1 \ - -e PIPENV_PIPFILE="/snekbox/Pipfile" \ - -e ENV="${PWD}/scripts/.profile" \ - --volume "${PWD}":"${PWD}" \ - --workdir "${PWD}"\ + -e PIPENV_PIPFILE='/snekbox/Pipfile\' \ + -e ENV='${PWD}/scripts/.profile' \ + --volume '${PWD}':'${PWD}' \ + --workdir '${PWD}'\ --entrypoint /bin/bash \ - pythondiscord/snekbox-venv:latest' + ghcr.io/python-discord/snekbox-base:latest" - name: Install dependencies run: "docker exec snekbox_test /bin/bash -c \ |