C++: Rename docs_src/ as docs/ #2
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Install just | |
| uses: extractions/setup-just@v2 | |
| - name: Set VCPKG_ROOT | |
| run: echo "VCPKG_ROOT=$VCPKG_INSTALLATION_ROOT" >> "$GITHUB_ENV" | |
| - name: Install dependencies | |
| run: just install | |
| - name: C++ format check | |
| run: just cpp-format-check | |
| - name: Python format check | |
| run: just py-format-check | |
| - name: Python lint check | |
| run: just py-lint-check | |
| - name: Python type check | |
| run: just py-typecheck | |
| - name: C++ build (debug) | |
| run: just cpp-build-debug | |
| - name: C++ build (release) | |
| run: just cpp-build-release | |
| - name: C++ tests with coverage (debug) | |
| run: just cpp-test-coverage | |
| - name: Python tests with coverage | |
| run: just py-test-coverage |