Add first github workflow
This commit is contained in:
parent
86efe2abf9
commit
7444784281
1 changed files with 11 additions and 0 deletions
11
.github/workflows/ci.yml
vendored
Normal file
11
.github/workflows/ci.yml
vendored
Normal 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
|
Reference in a new issue