Skip to content

docs: fixed identantions #52

docs: fixed identantions

docs: fixed identantions #52

Workflow file for this run

name: C Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y libssl-dev libconfig-dev cmake
- name: Create build directory
run: mkdir -p build && cd build
- name: Configure project with CMake
run: |
cd build
cmake ..
- name: Build project
run: |
cd build
make