Skip to content

Commit 0b3c66e

Browse files
committed
ci: add build workflow for GitHub Actions
1 parent 5eea53e commit 0b3c66e

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Build
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v3
11+
12+
- name: Install dependencies
13+
run: sudo apt update && sudo apt install mruby
14+
15+
- name: Configure CMake
16+
run: cmake -S . -B build
17+
18+
- name: Build
19+
run: cmake --build build

0 commit comments

Comments
 (0)