Skip to content

Commit

Permalink
Add push workflow to test Docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
jonsmock committed May 13, 2024
1 parent a956166 commit 6821d1e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Push

on:
push: {}
pull_request:
branches: [ main ]
workflow_dispatch: {}

jobs:
test-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Build
timeout-minutes: 10
run: |
docker build .

0 comments on commit 6821d1e

Please sign in to comment.