Files

28 lines
397 B
YAML
Raw Permalink Normal View History

2021-09-16 05:32:44 +00:00
name: Makefile CI
on:
push:
branches: [ $default-branch ]
pull_request:
branches: [ $default-branch ]
jobs:
build:
runs-on: ubuntu-latest
steps:
2022-03-28 17:11:12 +00:00
- uses: actions/checkout@v3
2022-11-10 13:45:36 +00:00
2021-09-16 05:32:44 +00:00
- name: configure
run: ./configure
2022-11-10 13:45:36 +00:00
2021-09-16 05:32:44 +00:00
- name: Install dependencies
run: make
2022-11-10 13:45:36 +00:00
2021-09-16 05:32:44 +00:00
- name: Run check
run: make check
2022-11-10 13:45:36 +00:00
2021-09-16 05:32:44 +00:00
- name: Run distcheck
run: make distcheck