From 19d08a5609ef46c4ff832812b76a02a52a7d3c84 Mon Sep 17 00:00:00 2001 From: Daniel Huppmann Date: Tue, 6 Jun 2023 06:48:18 +0200 Subject: [PATCH] Simplify build-the-docs GitHub Actions workflow (#751) --- .github/workflows/build-docs.yml | 20 ++++---------------- docs/README.md | 2 +- 2 files changed, 5 insertions(+), 17 deletions(-) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index e2b15fdc9..686fe22ce 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -10,27 +10,15 @@ on: branches: [ '**' ] jobs: - pytest: - strategy: - matrix: - os: - - ubuntu-latest - python-version: - - '3.10' - - fail-fast: false - - - runs-on: ${{ matrix.os }} - name: ${{ matrix.os }} py${{ matrix.python-version }} - + docs: + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} + - name: Set up Python uses: actions/setup-python@v4 with: - python-version: ${{ matrix.python-version }} + python-version: '3.10' - name: Install Pandoc uses: r-lib/actions/setup-pandoc@v1 diff --git a/docs/README.md b/docs/README.md index d09b32cef..25f3814b9 100644 --- a/docs/README.md +++ b/docs/README.md @@ -32,4 +32,4 @@ On Windows, from the command line, run:: ./make.bat -The rendered html pages will be located in `docs/build/html/index.html`. \ No newline at end of file +The rendered html pages will be located in `docs/_build/index.html`. \ No newline at end of file