Skip to content

Bump tqdm from 4.32.1 to 4.66.3 #435

Bump tqdm from 4.32.1 to 4.66.3

Bump tqdm from 4.32.1 to 4.66.3 #435

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
pull_request:
branches: [ master ]
jobs:
flake8:
name: flake8 and mypy
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.8.5'
- name: Run Flake8 and mypy
run: |
pip3 install .
python3 -m flake8 veniq test
python3 -m mypy veniq test
Tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.8.5'
- name: Integration Tests
run: |
pip3 install .
python3 -m unittest test/integration/dataset_collection.py
- name: Run unittests
run: |
pip3 install .
python3 -m unittest discover