Skip to content

Commit

Permalink
chore: test docker build on pull request
Browse files Browse the repository at this point in the history
  • Loading branch information
roblambell committed Dec 9, 2024
1 parent f2f709f commit 5253285
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/publish-image-test.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 5253285

Please sign in to comment.