Skip to content

Update hardware.md (#87) #49

Update hardware.md (#87)

Update hardware.md (#87) #49

Workflow file for this run

name: build
on:
push:
branches:
- main
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- 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