Add github workflow for building non-master and non-pr

This commit is contained in:
Maschell 2020-09-11 13:08:14 +02:00
parent 577fc3bbc8
commit 898a05b32c

16
.github/workflows/ci_non_master.yml vendored Normal file
View File

@ -0,0 +1,16 @@
name: Build binary
on:
push:
branches-ignore:
- master
jobs:
build-binary:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: build binary
run: |
docker build . -t builder
docker run --rm -v ${PWD}:/project builder make