Skip to content

Add-Github-Actions

Add-Github-Actions #1

Workflow file for this run

name: "Documentation pull Request Docs Check"
on:
pull_request:
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Install prerequisites
run: |
sudo apt-get --allow-releaseinfo-change update -y && sudo apt-get install -y tox pandoc
- name: Building Documentation in html
run: |
echo "---------------------------------------------------------------------------------------"
echo "---------------------------------- Building html --------------------------------------"
echo "---------------------------------------------------------------------------------------"
tox -e docs
echo "Building html was successful! "
- name: Store html build result
uses: actions/upload-artifact@v3
with:
name: documentation-html
path: |
docs/_build

Check failure on line 26 in .github/workflows/build-docs.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-docs.yml

Invalid workflow file

You have an error in your yaml syntax on line 26