Bump azure-storage-blob from 12.6.0 to 12.13.0 #77
Workflow file for this run
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
name: Check Dependencies | |
on: | |
pull_request: | |
jobs: | |
install: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.8', '3.9', '3.10'] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install tools | |
run: python -m pip install --upgrade pip setuptools wheel | |
- name: Build | |
run: python setup.py build | |
- name: Install all dependencies | |
run: pip install . && pip install -e '.[tests]' | |
- name: Run all unit tests | |
run: python -m unittest Hummingbird/test/test_*.py |