requirements(deps): bump idna from 3.6 to 3.7 #1143
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: Run the test suite | |
on: | |
pull_request: | |
push: | |
schedule: | |
- cron: '0 16 * * 5' # Every Friday 4pm | |
jobs: | |
install_and_run: | |
name: Run the test suite | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 | |
with: | |
python-version: 3.8 | |
- name: Install test dependencies | |
run: |- | |
python3 -m venv venv/ | |
source venv/bin/activate | |
pip3 install \ | |
--disable-pip-version-check \ | |
--no-warn-script-location \ | |
-r requirements.txt | |
pip3 check | |
# Ensure that even indirect dependencies are fully pinned | |
diff -u0 \ | |
<(sed -e '/^#/d' -e '/^$/d' requirements.txt | sort -f) \ | |
<(pip3 freeze | sort -f) | |
- name: Smoke test creation of Ubuntu OpenStack images | |
run: |- | |
source venv/bin/activate | |
pytest -v --doctest-modules |