Somehow this file never got checked in?

This commit is contained in:
David Given 2022-06-26 16:38:36 +02:00
parent df6cfe0410
commit 9579d3ba37

46
.github/workflows/ccpp.yml vendored Normal file
View file

@ -0,0 +1,46 @@
name: C/C++ CI
on: [push]
jobs:
build-linux:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: apt
run: sudo apt update && sudo apt install bison flex ninja-build
- name: make
run: make
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: brew
run: brew install ninja
- name: make
run: make
name: C/C++ CI
on: [push]
jobs:
build-linux:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: apt
run: sudo apt update && sudo apt install bison flex ninja-build
- name: make
run: make
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: brew
run: brew install ninja
- name: make
run: make