Skip to content

Commit f8c9a48

Browse files
author
Gabriele
committed
adding prototype of CI
1 parent 0cc9564 commit f8c9a48

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/ci_wbc.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI_WBC
2+
3+
on:
4+
push:
5+
branches: [ gabrielenava-add-ci ]
6+
pull_request:
7+
branches: [ gabrielenava-add-ci ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout repository
16+
uses: actions/checkout@v2
17+
18+
- name: Configure and build
19+
run: |
20+
mkdir build
21+
cd build
22+
cmake ..
23+
make install
24+

0 commit comments

Comments
 (0)