Skip to content

docs: enhance README.md with key features and usage (#82) #6

docs: enhance README.md with key features and usage (#82)

docs: enhance README.md with key features and usage (#82) #6

Workflow file for this run

name: Build
on:
workflow_dispatch:
pull_request:
push:
branches: [main]
jobs:
build-Project:
name: Build Project
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Configure Project
uses: threeal/cmake-action@v1.3.0
- name: Build Project
run: cmake --build build
- name: Install Project
run: cmake --install build --prefix install
- name: Upload Project as Artifact
uses: actions/upload-artifact@v3.1.3
with:
path: install