Skip to content

Add publish step back in #16

Add publish step back in

Add publish step back in #16

Workflow file for this run

# Workflow that runs on code changes to a pull request.
name: Any changes
on:
pull_request:
branches:
- main
jobs:
docs:
name: Test documentation builds
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install package
run: make install
- name: Test documentation builds
run: make documentation
env:
HUGGING_FACE_TOKEN: ${{ secrets.HUGGING_FACE_TOKEN }}