From 9d599f3895a7c26d087fb9ea85674248a64d5f15 Mon Sep 17 00:00:00 2001 From: Dhruv Date: Fri, 13 Mar 2026 20:29:56 +0530 Subject: [PATCH] docs: Add CI workflow for building EROFS documentation Added a GitHub Actions workflow to automatically build the EROFS documentation on pull requests. The workflow sets up Python 3.11, installs the required dependencies, builds the HTML documentation using make, and uploads the generated artifact for verification. This helps ensure documentation builds correctly before changes are merged. Signed-off-by: Dhruv Choudhary --- .github/workflows/build_ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build_ci.yml b/.github/workflows/build_ci.yml index 414b6ed..a67ac49 100644 --- a/.github/workflows/build_ci.yml +++ b/.github/workflows/build_ci.yml @@ -14,6 +14,8 @@ jobs: uses: actions/setup-python@v5 with: python-version: '3.11' + cache: 'pip' #It improves the ci speed and reliabilty. + - name: Install dependencies run: | pip install -r requirements.txt