diff options
author | 2020-11-16 22:13:20 +0100 | |
---|---|---|
committer | 2020-11-16 22:13:20 +0100 | |
commit | 7af483d691c24ef1367d7c1da116d0e371b8b10f (patch) | |
tree | dddfc6f9fac73086d3cae3562c5420abd04a3429 | |
parent | Use GHCR containers in Dockerfiles (diff) |
Properly escape newlines in docker run command
-rw-r--r-- | .github/workflows/lint-test.yaml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 9b5a482..3024e15 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -63,7 +63,8 @@ jobs: tags: ghcr.io/python-discord/snekbox-venv:latest - name: Start Container - run: docker run \ + run: | + docker run \ --tty \ --detach \ --name snekbox_test \ |