mirror of
https://github.com/moparisthebest/curl
synced 2025-01-10 21:48:10 -05:00
CI: inintial github action job
First shot at a CI build on github actions
This commit is contained in:
parent
5977664d2f
commit
df26f5f9c3
17
.github/workflows/cpp.yml
vendored
Normal file
17
.github/workflows/cpp.yml
vendored
Normal 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
|
Loading…
Reference in New Issue
Block a user