Skip to content

Bump certifi from 2023.7.22 to 2024.7.4 in /docs (#138) #356

Bump certifi from 2023.7.22 to 2024.7.4 in /docs (#138)

Bump certifi from 2023.7.22 to 2024.7.4 in /docs (#138) #356

Workflow file for this run

name: Python tox
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox pytest pytest-cov requests
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run tox
run: tox