Skip to content

Commit fb4dd81

Browse files
author
jdecorte-be
committed
Add C/C++ CI workflow
1 parent 27f1c19 commit fb4dd81

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/c-cpp.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: C/C++ CI
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
environment: compilation check
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
- name: Install dependencies
17+
run: sudo apt-get update && sudo apt-get install -y build-essential
18+
- name: Build
19+
run: make

0 commit comments

Comments
 (0)