Bump tqdm from 4.32.1 to 4.66.3 #435
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
# 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 |