ref: 247aa220f71b2c830ce5aa3d0a14588c250b360f
dir: /.github/workflows/makefile.yml/
name: Makefile
on: [push, pull_request]
jobs:
MakefileBuild:
name: Makefile/${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- {
name: "Linux/GCC",
os: ubuntu-latest,
compiler: gcc,
}
steps:
- uses: actions/checkout@v3
- name: Build
run: make -f Makefile.unix -j 2
- name: Test
run: make -f Makefile.unix check -j 2
- name: Clean
run: make -f Makefile.unix clean