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
commit 172c616131
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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