Skip to content

Bump certifi from 2023.5.7 to 2023.7.22 in /requirements #212

Bump certifi from 2023.5.7 to 2023.7.22 in /requirements

Bump certifi from 2023.5.7 to 2023.7.22 in /requirements #212

Workflow file for this run

name: "CI"
permissions: "read-all"
on:
push:
branches:
- "main"
pull_request:
defaults:
run:
shell: "bash"
env:
FORCE_COLOR: "1"
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12-dev"]
name: "Test (${{ matrix.python-version }})"
runs-on: "ubuntu-latest"
continue-on-error: false
steps:
- name: "Checkout repository"
uses: "actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b"
- name: "Setup Python"
uses: "actions/setup-python@2c3dd9e7e29afd70cc0950079bde6c979d1f69f9"
with:
python-version: "${{ matrix.python-version }}"
- name: "Run tests"
run: |
python -m pip install -r requirements/test.txt
python -m pip install .
pytest tests/