Bump paramiko from 3.2 to 3.4.0 #71
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: CI | |
on: [pull_request] | |
jobs: | |
build: | |
name: Python checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11 | |
- run: pip install --upgrade pip | |
- run: pip install -r requirements_dev.txt | |
- run: black --diff --check massa_test_framework/ | |
- run: ruff check massa_test_framework/ | |
- run: mypy |