diff --git a/.github/workflows/publish-image-test.yml b/.github/workflows/publish-image-test.yml new file mode 100644 index 000000000000..26f128f3def3 --- /dev/null +++ b/.github/workflows/publish-image-test.yml @@ -0,0 +1,15 @@ +name: Test image build + +on: pull_request + +jobs: + build_image: + name: Build Docker image + runs-on: ubuntu-latest + steps: + - name: Check out the repo + uses: actions/checkout@v4 + - name: Build without push + uses: docker/build-push-action@v1 + with: + push: false