From: Wouter Wijngaards Date: Wed, 23 Jun 2021 08:23:23 +0000 (+0200) Subject: Create ci.yml X-Git-Tag: release-1.13.2rc1~140^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4de4a0ffb677a0ef873b47af0ac3407bf7f83594;p=thirdparty%2Funbound.git Create ci.yml --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 000000000..73d68fbf3 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,21 @@ +name: ci + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: configure + run: ./configure --enable-debug + - name: make + run: make + - name: make test + run: make test