Skip to content

Bump certifi from 2022.12.7 to 2023.7.22 in /docs #16

Bump certifi from 2022.12.7 to 2023.7.22 in /docs

Bump certifi from 2022.12.7 to 2023.7.22 in /docs #16

Workflow file for this run

name: Check
on:
push:
branches:
- "master"
- "release/**"
pull_request:
jobs:
test:
name: Test ${{ matrix.py }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os:
- Ubuntu
py:
- "pypy3.9"
- "3.10"
steps:
- name: Setup python for test ${{ matrix.py }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.py }}
- uses: actions/checkout@v3
- name: Install tox-gh
run: python -m pip install tox tox-gh
- name: Setup test suite
run: tox r -vv --notest
- name: Run test suite
run: tox r --skip-pkg-install
env:
PYTEST_ADDOPTS: "-vv --durations=10"