Skip to content

Merge pull request #40 from botcity-dev/doc/update-docstring #187

Merge pull request #40 from botcity-dev/doc/update-docstring

Merge pull request #40 from botcity-dev/doc/update-docstring #187

Workflow file for this run

name: Linter
on:
push:
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.11]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Linter Dependencies
run: |
pip install flake8 mypy types-requests
- name: Run Flake8 Linter
run: |
flake8 botcity
- name: Run mypy Linter
run: |
mypy --namespace-packages -p "botcity.maestro"