Skip to content

Commit 9e75d50

Browse files
authored
feat: add ci
1 parent 0311dfb commit 9e75d50

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/linux.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CMake Build
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Checkout repository
11+
uses: actions/checkout@v2
12+
13+
- name: Set up CMake
14+
uses: jwlawrence/[email protected]
15+
16+
- name: Create build directory
17+
run: mkdir build
18+
19+
- name: Configure CMake
20+
run: cmake . -B build
21+
22+
- name: Build project
23+
run: cmake --build build

0 commit comments

Comments
 (0)