1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-09 17:29:36 +00:00

Add build workflow

This commit is contained in:
Thomas Harte 2019-11-14 13:40:06 -05:00 committed by GitHub
parent efdd27a435
commit c6e2b1237c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

22
.github/workflows/ccpp.yml vendored Normal file
View File

@ -0,0 +1,22 @@
name: C/C++ CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: install dependencies
run: apt-get install libsdl2-dev scons
- name: make
run: cd OSBindings/SDL; scons