Added simple workflow to allow testing of docker build

This commit is contained in:
Andrew Pennington 2024-08-15 19:05:42 +01:00
parent 9c1936ec2c
commit d0ada97970
No known key found for this signature in database
GPG key ID: E9DA097213FD17EA

17
.github/workflows/docker-build.yml vendored Normal file
View file

@ -0,0 +1,17 @@
name: Hello World Workflow
on:
workflow_dispatch:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
say-hello:
runs-on: ubuntu-latest
steps:
- name: Say Hello World
run: echo "Hello, World!"