diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1adc4b50..b6ec0c14 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,17 +30,20 @@ jobs: echo "Testing that you built the auto-examples, if this fails run flux start make html locally." python .github/scripts/check_diff.py /tmp/auto_examples ./auto_examples - spelling: + spell-and-linkcheck: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: install dependencies run: >- sudo apt-get update -y && - sudo apt-get install -y python3-pip && + sudo apt-get install -y enchant python3-pip && sudo pip3 install --upgrade -r ./requirements.txt - name: Check Spelling uses: crate-ci/typos@7ad296c72fa8265059cc03d1eda562fbdfcd6df2 # v1.9.0 with: files: "*.rst */*.rst */*/*.rst" + + - name: make linkcheck + run: make linkcheck