Skip to content

Revert "Update main.cpp" #5

Revert "Update main.cpp"

Revert "Update main.cpp" #5

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Checkout code
- name: Set up CMake
uses: actions/setup-cmake@v3
with:
cmake-version: '3.23.1'
- name: Configure CMake
run: cmake -S . -B build
- name: Build
run: cmake --build build
- name: Run tests
run: ctest --test-dir build
- name: Package
run: cpack --config build/CPackConfig.cmake