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