Skip to content

✔️ Add urllib3 cohabitation test (#92) #3

✔️ Add urllib3 cohabitation test (#92)

✔️ Add urllib3 cohabitation test (#92) #3

name: Test with Cohabitation
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
concurrency:
group: ci-cohabitation-${{ github.ref_name }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Set up Python 3.11
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
with:
python-version: 3.11
cache: 'pip'
- name: Install dependencies
run: |
pip install nox
- name: Run tests
run: |
nox -s "test_cohabitation"