Skip to content

Add actions for notebook clearing, building docs, and running unit tests #3

Add actions for notebook clearing, building docs, and running unit tests

Add actions for notebook clearing, building docs, and running unit tests #3

Workflow file for this run

name: CI - Build docs

Check failure on line 1 in .github/workflows/build-docs.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-docs.yml

Invalid workflow file

(Line: 24, Col: 9): There's not enough info to determine what you meant. Add one of these properties: run, shell, uses, with, working-directory, (Line: 37, Col: 9): There's not enough info to determine what you meant. Add one of these properties: run, shell, uses, with, working-directory
on:
push:
branches: [ main ]
paths:
- "docs/**"
- "**/*.py"
- ".github/workflows/build-docs.yml"
pull_request:
paths:
- "docs/**"
- ".github/workflows/build-docs.yml"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
docs:
name: Build docs
runs-on: ubuntu-latest
steps:
- name: Setup
- uses: ./.github/actions/setup/setup.yml
- name: Set up just
uses: extractions/setup-just@v3
- name: Build docs
run: just docs
doctest:
name: Run doctests
runs-on: ubuntu-latest
steps:
- name: Setup
- uses: ./.github/actions/setup/setup.yml
- name: Set up just
uses: extractions/setup-just@v3
- name: Run doctests
run: just doctest