first pass at the templates

This commit is contained in:
Andy McKay
2019-07-29 09:38:23 -07:00
parent b67cc8228e
commit 4d7a741e07
71 changed files with 717 additions and 2 deletions
+21
View File
@@ -0,0 +1,21 @@
on: [push]
name: C/C++ with make
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: configure
run: ./configure
- name: make
run: make
- name: make test
run: make test