Added disclaimer to the ReadMe to make it clear that only the unit te… #4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |