From 61f3bf18c6af3f8d9eb6828548246dd370f7b71e Mon Sep 17 00:00:00 2001 From: Alexander Goscinski Date: Sat, 21 Dec 2024 12:59:56 +0100 Subject: [PATCH] Fix syntax errors in the docs workflow (#114) --- .github/workflows/build-docs.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index dd3bf58..95aaef2 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -17,16 +17,13 @@ jobs: steps: - uses: actions/checkout@v3 - - - Name: Install pandoc - with: - sudo apt-get install pandoc - - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - - run: pip install tox + - run: | + sudo apt-get install pandoc + pip install tox - - name: run sphinx docs build + - name: Build sphinx docs run: tox -e docs