mirror of
https://github.com/curl/curl.git
synced 2024-12-15 06:40:09 +08:00
ab712afa8f
To match travis and give more info on failures.
18 lines
293 B
YAML
18 lines
293 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 test-nonflaky
|