Add github action to build

This makes sure the project builds correctly.
This commit is contained in:
Mathieu Champlon 2020-08-27 10:53:21 +02:00
parent 559d5f335e
commit 3323acf03e
1 changed files with 12 additions and 0 deletions

12
.github/workflows/build.yml vendored Normal file
View File

@ -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