Skip to content

Update README.md

Update README.md #3

Workflow file for this run

name: Build & Test (C/ASM NeuroHTTP)
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential clang make nasm
- name: Build project
run: make all
- name: Run basic tests
run: |
if [ -f "./bin/aionic" ]; then
echo "✅ Binary built successfully:"
./bin/aionic --version || true
else
echo "❌ Binary not found!"
exit 1
fi