Skip to content

docs: Fold "Glossary of Terms" and "User Documentation" into "How to Access Oppia Webpages" #761

docs: Fold "Glossary of Terms" and "User Documentation" into "How to Access Oppia Webpages"

docs: Fold "Glossary of Terms" and "User Documentation" into "How to Access Oppia Webpages" #761

Workflow file for this run

name: Lint Check
on:
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
markdown_linter:
name: Run markdown linter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- name: Lint markdown files
run: |
python scripts/linter.py
pylint_linter:
name: Run pylint linter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- name: Lint python files
run: |
pip install pylint
pylint **/*.py