From 703e1d7c658992f91b3ba4bde9d86298dbf8b91d Mon Sep 17 00:00:00 2001 From: Justin Hammond Date: Wed, 22 Jan 2020 14:41:08 +0800 Subject: [PATCH] PR Test --- .github/workflows/prbuildtest.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/prbuildtest.yml diff --git a/.github/workflows/prbuildtest.yml b/.github/workflows/prbuildtest.yml new file mode 100644 index 0000000..0d3ce54 --- /dev/null +++ b/.github/workflows/prbuildtest.yml @@ -0,0 +1,16 @@ +name: Docker Image Build + +on: + pull_request: + types: [opened, edited, reopened, synchronize] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout Code + uses: actions/checkout@v1 + with: + fetch-depth: 1 # shallow clone + - name: Build Docker Image + run: docker build . --file Docker/Dockerfile \ No newline at end of file