Archived
1
Fork 0

Add first github workflow

This commit is contained in:
redstrate 2021-02-15 19:39:08 -05:00
parent 86efe2abf9
commit 7444784281

11
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,11 @@
name: CI
on: [push]
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: sudo apt-get install -y cmake
- run: /bin/bash mkdir -p build
- run: /bin/bash cmake ..
- run: /bin/bash make