build(deps): bump golang from 1.23.2-bookworm to 1.23.4-bookworm #771
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Dockerfile | |
on: pull_request | |
jobs: | |
dockerfile-test: | |
name: container-structure-test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Build | |
run: docker build -t cli-test . | |
- name: Check it exists | |
run: docker images | |
- name: Run docker tests | |
uses: docker://gcr.io/gcp-runtimes/container-structure-test:latest | |
with: | |
args: "test --image cli-test --config docker-test.yaml" |