Skip to content

Bump tqdm from 4.64.1 to 4.66.3 #25

Bump tqdm from 4.64.1 to 4.66.3

Bump tqdm from 4.64.1 to 4.66.3 #25

Workflow file for this run

name: tests
on: push
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: pip install -r requirements.txt
- name: Run tests
run: make test
- name: Report Coverage
uses: paambaati/codeclimate-action@v3.2.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}