From 1e6f38f772ebd8b551199b93cf7ca09972eb8f64 Mon Sep 17 00:00:00 2001 From: Adil Hafeez Date: Sun, 22 Mar 2026 23:02:58 +0000 Subject: [PATCH] fix validate-config CI job to use Python (script unchanged) --- .github/workflows/ci.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b888adcf..6e34f40f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -133,12 +133,13 @@ jobs: - name: Checkout code uses: actions/checkout@v6 - - name: Install Rust - uses: dtolnay/rust-toolchain@stable + - name: Set up Python + uses: actions/setup-python@v6 + with: + python-version: "3.14" - - name: Build plano CLI - working-directory: ./crates - run: cargo build --release -p plano-cli + - name: Install planoai + run: pip install -e ./cli - name: Validate plano config run: bash config/validate_plano_config.sh