Skip to content

[TBD]: Implement slashing background app #7636

[TBD]: Implement slashing background app

[TBD]: Implement slashing background app #7636

Workflow file for this run

name: docs
on:
push:
branches:
- develop
- main
pull_request:
jobs:
run:
continue-on-error: True
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.7]
timeout-minutes: 30
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
- uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Install dependencies
run: |
sudo apt-get update --fix-missing
sudo apt-get autoremove
sudo apt-get autoclean
pip install tomte[tox]==0.2.12
sudo npm install -g markdown-spellcheck
- name: Generate Documentation
run: tox -e docs
- name: Check spelling
run: tox -e spell-check