Skip to content

Workflow file for this run

name: docs
on:
push:
branches:
- main
jobs:
build:

Check failure on line 9 in .github/workflows/docs.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/docs.yml

Invalid workflow file

You have an error in your yaml syntax on line 9
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- name: Checkout github repo
uses: actions/checkout@v4
- name: Install pandoc
run: sudo apt-get install pandoc
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: pip upgrade
run: |
pip install --upgrade pip
pip install wheel setuptools pip --upgrade
- name: Install Dependencies
run: |
pip install -e .
pip install -e ".[dev]"