add a github action to build the docker image

This commit is contained in:
Rob Best
2020-03-08 18:04:43 +00:00
parent 78ce406ce2
commit 80765ab97d

10
.github/workflows/build.yaml vendored Normal file
View File

@@ -0,0 +1,10 @@
name: build
on: [push, pull_request]
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build the Docker image
run: docker build .