2020-03-17 11:17:19 +00:00
|
|
|
name: C/C++ CI
|
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
|
push:
|
2020-07-13 12:12:41 -07:00
|
|
|
branches: [ $default-branch ]
|
2020-03-17 11:17:19 +00:00
|
|
|
pull_request:
|
2020-07-13 12:12:41 -07:00
|
|
|
branches: [ $default-branch ]
|
2020-03-17 11:17:19 +00:00
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
build:
|
|
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
|
|
steps:
|
2024-01-03 02:09:21 -05:00
|
|
|
- uses: actions/checkout@v4
|
2020-03-17 11:17:19 +00:00
|
|
|
- name: configure
|
|
|
|
|
run: ./configure
|
|
|
|
|
- name: make
|
|
|
|
|
run: make
|
|
|
|
|
- name: make check
|
|
|
|
|
run: make check
|
|
|
|
|
- name: make distcheck
|
|
|
|
|
run: make distcheck
|