Add CI build

This commit is contained in:
Dimitri Lozeve 2021-02-26 17:57:46 +01:00
parent 41c2db982c
commit bda5ebddca
2 changed files with 19 additions and 0 deletions

17
.github/workflows/build.yml vendored Normal file
View file

@ -0,0 +1,17 @@
name: build
on: push
jobs:
build:
name: Build project
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: sudo apt-get install -y meson libglfw3-dev libglew-dev libfreeimage-dev
- name: Meson Build
run: |
meson build
ninja -C build

View file

@ -1,3 +1,5 @@
* ShaderTool * ShaderTool
[[https://github.com/dlozeve/ShaderTool/actions/workflows/build.yml][https://github.com/dlozeve/ShaderTool/actions/workflows/build.yml/badge.svg]]
Live tool for developing OpenGL shaders interactively. Live tool for developing OpenGL shaders interactively.