Skip to content

Dev/sphinx

Dev/sphinx #2

Workflow file for this run

name: CI Tests
on:
#NOTE: All jobs gated by auth job
#Regular dev
push:
pull_request:
#Enable UI-driven branch testing
workflow_dispatch:
#Test main bidaily @ 1a
schedule:
- cron: '0 1 1-31/2 * *'
jobs:
test-docs:

Check failure on line 20 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI Tests

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 20, Col: 3): The workflow must contain at least one job with no dependencies.
needs: [ test-minimal-python ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Test building docs
run: |
cd docs && ./ci.sh
test-readme:
needs: [ test-minimal-python ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Test building docs
continue-on-error: true
run: |
docker run --rm -v "$(pwd)/README.md:/workdir/README.md:ro" -v "$(pwd)/.markdownlint.yaml:/workdir/.markdownlint.yaml:ro" ghcr.io/igorshubovych/markdownlint-cli:v0.37.0 README.md