diff --git a/.github/workflows/ci_non_master.yml b/.github/workflows/ci_non_master.yml new file mode 100644 index 0000000..ecd2722 --- /dev/null +++ b/.github/workflows/ci_non_master.yml @@ -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 \ No newline at end of file