diff options
| author | 2020-11-16 21:22:32 +0100 | |
|---|---|---|
| committer | 2020-11-16 21:22:32 +0100 | |
| commit | 9122f3f4a0aa6d0cbd854c1e830a3af58969668d (patch) | |
| tree | 709aef29861270716450b4b4e90a37706e12fc0c | |
| parent | Trigger workflow on feature branch (diff) | |
Check out repository to access files
| -rw-r--r-- | .github/workflows/lint-test.yaml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index dcf22ee..9b5a482 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -11,6 +11,9 @@ jobs: runs-on: ubuntu-latest steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 @@ -43,6 +46,7 @@ jobs: context: . file: ./docker/base.Dockerfile push: false + load: true cache-from: type=local,src=/tmp/.base-buildx-cache cache-to: type=local,type=local,dest=/tmp/.base-buildx-cache,mode=max tags: ghcr.io/python-discord/snekbox-base:latest @@ -53,6 +57,7 @@ jobs: context: . file: ./docker/venv.Dockerfile push: false + load: true cache-from: type=local,src=/tmp/.venv-buildx-cache cache-to: type=local,type=local,dest=/tmp/.venv-buildx-cache,mode=max tags: ghcr.io/python-discord/snekbox-venv:latest |