Merge pull request #81 from mat007/build-github-action

Add github action to build
This commit is contained in:
Stefan Scherer
2020-09-30 16:35:34 +02:00
committed by GitHub

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