CI: inintial github action job

First shot at a CI build on github actions
This commit is contained in:
Daniel Stenberg 2019-09-14 20:25:43 +02:00 committed by GitHub
parent 5977664d2f
commit df26f5f9c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 0 deletions

17
.github/workflows/cpp.yml vendored Normal file
View File

@ -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