From: Daniel Stenberg Date: Sat, 14 Sep 2019 18:25:43 +0000 (+0200) Subject: CI: inintial github action job X-Git-Tag: curl-7_67_0~196 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=df26f5f9c36e19cd503c0e462e9f72ad37b84c82;p=thirdparty%2Fcurl.git CI: inintial github action job First shot at a CI build on github actions --- diff --git a/.github/workflows/cpp.yml b/.github/workflows/cpp.yml new file mode 100644 index 0000000000..9f3b87eb5d --- /dev/null +++ b/.github/workflows/cpp.yml @@ -0,0 +1,17 @@ +name: Build on Ubuntu with default options + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: configure + run: ./buildconf && ./configure + - name: make + run: make + - name: make check + run: make check