Skip to content

Bump tqdm from 4.64.1 to 4.66.3 #19

Bump tqdm from 4.64.1 to 4.66.3

Bump tqdm from 4.64.1 to 4.66.3 #19

Workflow file for this run

name: Type check and linting
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10"]
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- uses: pdm-project/setup-pdm@v3
name: Setup PDM
with:
python-version: ${{ matrix.python-version }}
enable-pep582: true # Enable PEP 582 package loading globally
- name: Install dependencies
run: pdm install
- name: Run MyPy in strict mode
run: pdm run mypy
- name: Lint
run: pdm run black --check mailanalysis