curl/.github/workflows/cpp.yml
Daniel Stenberg df26f5f9c3
CI: inintial github action job
First shot at a CI build on github actions
2019-09-14 20:25:43 +02:00

18 lines
285 B
YAML

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