Skip to content

Commit

Permalink
Workflow to test docker build (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrypnotoad authored Sep 19, 2024
1 parent ef381ee commit 447e8d5
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test-docker-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Test Docker Bukild

on:
push:
branches:
- '**' # Trigger on any branch
pull_request:
branches:
- dev # Trigger only on pull requests to the dev branch

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Build the Docker image
run: docker build . -f Dockerfile

0 comments on commit 447e8d5

Please sign in to comment.