From 7502ec74d190cd52e2c155bc1853695750cff1e7 Mon Sep 17 00:00:00 2001 From: User Date: Wed, 10 Jun 2026 11:08:29 +0200 Subject: [PATCH 1/2] Publish EyesLibrary docs to GitHub Pages Add docs workflow that generates the EyesLibrary keyword reference via robot.libdoc and deploys it to GitHub Pages on every push to main. Bump eyes-robotframework to 6.4.41 (and selenium to 4.44.0 to satisfy the new transitive Appium dependency). Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/docs.yml | 51 ++++++++++++++++++++++++++++++++++++++ .gitignore | 4 +++ requirements.txt | 4 +-- 3 files changed, 57 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/docs.yml diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml new file mode 100644 index 0000000..f905420 --- /dev/null +++ b/.github/workflows/docs.yml @@ -0,0 +1,51 @@ +name: Build and publish docs + +on: + push: + branches: [ main ] + workflow_dispatch: + +permissions: + contents: read + pages: write + id-token: write + +concurrency: + group: pages + cancel-in-progress: false + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Check out project + uses: actions/checkout@v4 + + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.x' + + - name: Install dependencies + run: pip install -r requirements.txt + + - name: Generate EyesLibrary docs + run: | + mkdir -p _site + python -m robot.libdoc EyesLibrary _site/index.html + + - name: Upload Pages artifact + uses: actions/upload-pages-artifact@v3 + with: + path: _site + + deploy: + needs: build + runs-on: ubuntu-latest + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.gitignore b/.gitignore index 037c32e..7c6dbe8 100644 --- a/.gitignore +++ b/.gitignore @@ -132,3 +132,7 @@ dmypy.json log.html output.xml report.html + +# Generated docs site +_site/ +.docs-venv/ diff --git a/requirements.txt b/requirements.txt index 3a8948f..c42c8e0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -eyes-robotframework==5.12.0 +eyes-robotframework==6.4.41 robotframework==6.1 robotframework-seleniumlibrary==6.1.0 -selenium==4.9.1 \ No newline at end of file +selenium==4.44.0 \ No newline at end of file From 053fb76fc717afbea08aed0cf3d50fa3debd7b2e Mon Sep 17 00:00:00 2001 From: User Date: Wed, 10 Jun 2026 11:10:22 +0200 Subject: [PATCH 2/2] Bump robotframework and seleniumlibrary to latest MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit robotframework 6.1 → 7.4.2, robotframework-seleniumlibrary 6.1.0 → 6.9.0. eyes-robotframework 6.4.41 only requires robotframework>=4.0 and robotframework-seleniumlibrary>=4.5, so the bumps are compatible. Co-Authored-By: Claude Opus 4.7 (1M context) --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index c42c8e0..f7989c1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ eyes-robotframework==6.4.41 -robotframework==6.1 -robotframework-seleniumlibrary==6.1.0 +robotframework==7.4.2 +robotframework-seleniumlibrary==6.9.0 selenium==4.44.0 \ No newline at end of file