Skip to content

Update codestyle.yml #85

Update codestyle.yml

Update codestyle.yml #85

Workflow file for this run

# This workflow will install Python dependencies, run tests, run linting, and test building docs

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

View workflow run for this annotation

GitHub Actions / .github/workflows/docs.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: build
name: Building Docs
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest]
python-version: [3.10]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install pip setuptools wheel --upgrade
python -m pip install -e '.[docs]'
- name: Build docs
run: |
sphinx-build docs docs/_build/html -b html