Skip to content

Commit c2fecec

Browse files
committed
ci: add GitHub Actions CI
1 parent 9e864ab commit c2fecec

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: CI
2+
on:
3+
push:
4+
branches: [ main ]
5+
pull_request:
6+
branches: [ main ]
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: Configure
13+
run: cmake -B build -DCMAKE_BUILD_TYPE=Release
14+
- name: Build
15+
run: cmake --build build --parallel

0 commit comments

Comments
 (0)