feat: initialize project structure with core application scaffolding and configuration

This commit is contained in:
2025-01-18 22:15:47 +00:00
commit 2248537ca9
34 changed files with 5255073 additions and 0 deletions
@@ -0,0 +1,32 @@
name: Build and test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
working-directory: ${{github.workspace}}
run: make build
- name: Test all
working-directory: ${{github.workspace}}
run: make test
- name: Bench
working-directory: ${{github.workspace}}
run: make big