Skip to content

Bump tqdm from 4.41.1 to 4.66.3 in /examples/sentinel2 #28

Bump tqdm from 4.41.1 to 4.66.3 in /examples/sentinel2

Bump tqdm from 4.41.1 to 4.66.3 in /examples/sentinel2 #28

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.6, 3.7, 3.8]
steps:
- name: Checkout git repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[test]"
- name: Lint
run: flake8 ./srem/*.py
- name: Type check
run: mypy ./srem/*.py
- name: Unit test
run: pytest tests