From 52532854095c465d1e000022211e1e4aee0defda Mon Sep 17 00:00:00 2001 From: Rob Lambell Date: Mon, 9 Dec 2024 15:03:07 +0000 Subject: [PATCH] chore: test docker build on pull request --- .github/workflows/publish-image-test.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/publish-image-test.yml diff --git a/.github/workflows/publish-image-test.yml b/.github/workflows/publish-image-test.yml new file mode 100644 index 000000000000..9e415ca1f900 --- /dev/null +++ b/.github/workflows/publish-image-test.yml @@ -0,0 +1,20 @@ +name: Test image build + +on: + pull_request: + branches: + - master + # Review gh actions docs if you want to further define triggers, paths, etc + # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on + +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