Skip to content

Bump tqdm from 4.66.1 to 4.66.3 #70

Bump tqdm from 4.66.1 to 4.66.3

Bump tqdm from 4.66.1 to 4.66.3 #70

Workflow file for this run

name: Integration
on:
push:
branches:
- master
pull_request:
jobs:
linting-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
curl -sSL https://install.python-poetry.org | python3 -
poetry install --no-root
- name: Linting
run: |
poetry run flake8 . && poetry run isort --check-only --diff .
- name: Tests
run: |
poetry run python -m pytest -v