Skip to content

Create professional GitHub Pages website and validate XLS format #2

Create professional GitHub Pages website and validate XLS format

Create professional GitHub Pages website and validate XLS format #2

Workflow file for this run

name: Validate XLS Documents
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
workflow_dispatch:
jobs:
validate-xls:
runs-on: ubuntu-latest
name: Validate XLS Document Parsing
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install beautifulsoup4
- name: Validate XLS document parsing
run: |
echo "Running XLS document validation..."
PYTHONPATH=site python site/xls_parser.py
- name: Report validation results
if: always()
run: |
echo "XLS validation completed"
echo "This pipeline validates that all XLS documents can be parsed correctly"
echo "If this fails, it indicates issues with XLS document formatting or metadata"