Skip to content

Bump certifi from 2021.10.8 to 2024.7.4 #100

Bump certifi from 2021.10.8 to 2024.7.4

Bump certifi from 2021.10.8 to 2024.7.4 #100

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches: [master, main]
jobs:
test:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python: [2.7, 3.6, 3.7, 3.8, "3.10"]
name: Python ${{ matrix.python }} Test
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run test suite
run: python setup.py test