Skip to content

Commit 9beba5e

Browse files
committed
add ci
Signed-off-by: smityz <smityz@qq.com>
1 parent 3954d4c commit 9beba5e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
on:
2+
pull_request:
3+
branches:
4+
- master
5+
push:
6+
branches:
7+
- master
8+
9+
name: CI
10+
11+
jobs:
12+
build:
13+
name: build
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: Rust Cache
18+
uses: Swatinem/rust-cache@v1.4.0
19+
- name: cmake build
20+
run: cmake -S . -B build && cmake --build build

0 commit comments

Comments
 (0)