25 lines
336 B
YAML
25 lines
336 B
YAML
name: Makefile CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
build_and_test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: configure
|
|
run: ./configure
|
|
|
|
- name: Install dependencies
|
|
run: make
|
|
|
|
- name: Run and test
|
|
run: make run
|