Skip to content

add script file

add script file #5

Workflow file for this run

name: CMake with Tests on Ubuntu
on: [push, pull_request]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt-get install -y <dependencies>
- name: Configure CMake
run: cmake -B ${{ github.workspace }}/build -DCMAKE_BUILD_TYPE=Release
- name: Build
run: cmake --build ${{ github.workspace }}/build
- name: Run Tests
run: ctest -C Release --verbose