chore: initialize new repository with default project structure and configuration files

This commit is contained in:
2025-01-14 17:53:15 +00:00
commit 045aa97eb3
87 changed files with 28689 additions and 0 deletions
@@ -0,0 +1,29 @@
name: Build and run rrex2
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt update && sudo apt install clang-format -y
- name: Build
working-directory: ${{github.workspace}}
run: make
- name: Install
working-directory: ${{github.workspace}}
run: make install