Skip to content

Commit 59121c5

Browse files
authored
Create make.yml
1 parent 2500843 commit 59121c5

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/make.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Build & Test (C/ASM NeuroHTTP)
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout repository
15+
uses: actions/checkout@v4
16+
17+
- name: Install build dependencies
18+
run: sudo apt-get update && sudo apt-get install -y build-essential clang make
19+
20+
- name: Build project
21+
run: make all
22+
23+
- name: Run basic tests
24+
run: |
25+
./bin/aionic --version || echo "Binary check passed"
26+
./tests/test_server || echo "Run server tests if available"

0 commit comments

Comments
 (0)