mirror of
https://github.com/curl/curl.git
synced 2026-05-01 19:48:20 +03:00
CI: inintial github action job
First shot at a CI build on github actions
This commit is contained in:
parent
5977664d2f
commit
df26f5f9c3
1 changed files with 17 additions and 0 deletions
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…
Add table
Add a link
Reference in a new issue