Bump urllib3 from 2.0.7 to 2.2.2 #236
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: Run tests for lints, units and functions | |
on: [push] | |
jobs: | |
test: | |
name: Testing | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install and configure Poetry | |
run: | | |
curl -sSL https://install.python-poetry.org | python3 - | |
- name: Install dependencies | |
run: | | |
poetry install | |
- name: Lint test | |
run: | | |
poetry run flake8 | |
- name: Unit and functional tests | |
run: | | |
poetry run pytest | |
- name: Download URLs integrity check | |
run: | | |
poetry run python ./tools/check_urls.py --hashes |