Bump pytest from 7.4.1 to 7.4.2 #209
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v3 | |
- 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 |