1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-08-07 23:25:00 +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

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