Skip to content

Bump mkdocs-include-markdown-plugin from 6.0.1 to 6.0.4 #258

Bump mkdocs-include-markdown-plugin from 6.0.1 to 6.0.4

Bump mkdocs-include-markdown-plugin from 6.0.1 to 6.0.4 #258

Workflow file for this run

name: tests
on:
push:
paths-ignore:
- "docs/**"
- "*.md"
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
fail-fast: false
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '${{ matrix.python-version }}'
- name: Setup Environment
run: |
python3 -m pip install --upgrade pip setuptools wheel "poetry<1.4.0"
poetry run python -m pip install -U pip setuptools wheel
- name: Install dependencies
run: |
poetry install --with=dev --extras=textract
- name: Version info
run: |
poetry run python main.py --version
- name: Test with pytest
run: |
poetry run pytest
- name: Check with MyPy
run: |
poetry run mypy organize main.py