Skip to content

chore(deps): Update arillso/.github action to v2026-03-25 #44

chore(deps): Update arillso/.github action to v2026-03-25

chore(deps): Update arillso/.github action to v2026-03-25 #44

Workflow file for this run

---
name: Continuous Integration
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
permissions:
contents: read
security-events: write
actions: read
pull-requests: write
issues: read
id-token: write
jobs:
build-docs:
name: Build Documentation
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Setup Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with:
python-version: "3.11"
cache: "pip"
- name: Install Dependencies
run: pip install -r requirements.txt
- name: Build Documentation
run: ./build.sh
claude-review:
uses: arillso/.github/.github/workflows/ai-claude-review.yml@2026-03-25
if: github.event_name == 'pull_request' && github.event.action == 'opened'
secrets:
CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}