Skip to content

Bump mkdocs-material from 9.5.48 to 9.5.49 #974

Bump mkdocs-material from 9.5.48 to 9.5.49

Bump mkdocs-material from 9.5.48 to 9.5.49 #974

Workflow file for this run

name: Linting
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r ./requirements.txt
pip install black isort mypy
- name: Run isort
run: |
isort . --check --profile "black"
- name: Run black
run: |
black . --check --verbose
- name: Run mypy
run: |
mypy ./stringmatch/