Skip to content

switch documentation generation from pdoc3 to pdoc #61

switch documentation generation from pdoc3 to pdoc

switch documentation generation from pdoc3 to pdoc #61

Workflow file for this run

name: mypy and pylint
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install mypy pylint
- name: mypy
run: |
mypy examples grilops
- name: pylint
run: |
pylint examples grilops