Skip to content

Commit dc2de17

Browse files
committed
test: check gha
Signed-off-by: Tom Ingleby <[email protected]>
1 parent 31a352a commit dc2de17

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/build.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Build
2+
on: [push]
3+
jobs:
4+
Explore-GitHub-Actions:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v5
8+
- name: Install depdencies.
9+
run: |
10+
sudo apt-get update
11+
sudo apt-get install -y cmake ninja build-essential
12+
- name: Build
13+
run: |
14+
mkdir build
15+
cd build
16+
cmake -G Ninja ../
17+
cmake --build

0 commit comments

Comments
 (0)