From 3323acf03e554f861da5f4f9c6bbdc429bc1f75f Mon Sep 17 00:00:00 2001 From: Mathieu Champlon Date: Thu, 27 Aug 2020 10:53:21 +0200 Subject: [PATCH] Add github action to build This makes sure the project builds correctly. --- .github/workflows/build.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..ec3f5c0 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,12 @@ +name: Build +on: [push, pull_request] +jobs: + build: + name: Build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Build + uses: docker/build-push-action@v1 + with: + push: false