Add workflow to check building with makefile

This commit is contained in:
Angie 2022-08-27 13:03:54 -04:00
parent dcad3e2246
commit 8009c4da15

14
.github/workflows/make.yml vendored Normal file
View File

@ -0,0 +1,14 @@
name: C/C++ CI
# Build on every branch push, tag push, and pull request change:
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: make
run: make WERROR=1