name: "Copilot Setup Steps" on: workflow_dispatch jobs: copilot-setup-steps: runs-on: ubuntu-latest permissions: contents: read steps: - name: Checkout code uses: actions/checkout@v4 - name: Install Build Dependencies run: sudo apt-get update && sudo apt-get install -y clang cmake make - name: Configure CMake (C++14) run: cmake --preset clang-14-debug - name: Configure CMake (C++20) run: cmake --preset clang-20-debug