Skip to content

Add dependabot config #7

Add dependabot config

Add dependabot config #7

Workflow file for this run

name: Docs
on:
push:
branches:
- main
pull_request:
types: [opened, reopened, synchronize]
permissions:
contents: write
jobs:
Docs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: Install torch CPU-only version
run: python -m pip install torch --index-url https://download.pytorch.org/whl/cpu
- name: Install charonload
run: python -m pip install --editable ".[dev]"
- name: Build docs
run: nox -s docs
- name: Deploy docs
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: build/docs/html
clean: true
single-commit: true
if: github.event_name != 'pull_request'