Skip to content

Updated bib links

Updated bib links #38

Workflow file for this run

name: Run Sanity Checks
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
sanity_checks:
runs-on: ubuntu-latest
steps:
# Check out the repository
- name: Checkout repository
uses: actions/checkout@v4
# Set up Python environment
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x' # Specify the version you need, e.g., '3.8'
# Step 3: Install dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# Step 4: Run the sanitychecks.py script
- name: Run sanity checks
run: python scripts/sanitychecks.py --escalate-warnings