Added simple workflow to allow testing of docker build
This commit is contained in:
parent
9c1936ec2c
commit
d0ada97970
1 changed files with 17 additions and 0 deletions
17
.github/workflows/docker-build.yml
vendored
Normal file
17
.github/workflows/docker-build.yml
vendored
Normal 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!"
|
Loading…
Add table
Reference in a new issue