Skip to content

Github Actions: Adding LinkChecker and installation from requirements… #33

Github Actions: Adding LinkChecker and installation from requirements…

Github Actions: Adding LinkChecker and installation from requirements… #33

Workflow file for this run

name: build
on:
push:
branches:
- main
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Installing dependencies
run: pip install -r requirements.txt
- run: git config user.name 'github-actions[bot]' && git config user.email 'github-actions[bot]@users.noreply.github.com'
- name: Build and Deployment
run: mkdocs gh-deploy --force
- name: Checking Links
run: mkdocs-linkcheck --sync -r docs/ -m get --verbose
continue-on-error: true