Skip to content

Fixed a broken ReadMe link to the SolutionOverview file. #3

Fixed a broken ReadMe link to the SolutionOverview file.

Fixed a broken ReadMe link to the SolutionOverview file. #3

name: C++ CI (Ubuntu)
on:
push:
branches:
- main
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y build-essential cmake
- name: Install Vcpkg
run: |
git clone https://github.com/microsoft/vcpkg.git
cd vcpkg
./bootstrap-vcpkg.sh
vcpkg integrate install
- name: Configure CMake
run: cmake -S . -B build -DCMAKE_TOOLCHAIN_FILE=/home/runner/work/FacebowFileReader/FacebowFileReader/vcpkg/scripts/buildsystems/vcpkg.cmake
- name: Build
run: cmake --build build
- name: Test
run: cd build && ctest --output-on-failure