1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-11 04:28:58 +00:00

Merge pull request #676 from TomHarte/BuildWorkflow

Adds continuous integration via GitHub actions.
This commit is contained in:
Thomas Harte 2019-11-14 13:59:52 -05:00 committed by GitHub
commit f16f0897d5
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: SDL/Ubuntu
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: sudo apt-get install libsdl2-dev scons
- name: Make
run: cd OSBindings/SDL; scons