Skip to content

R - Bump urllib3 from 2.0.5 to 2.0.6 #697

R - Bump urllib3 from 2.0.5 to 2.0.6

R - Bump urllib3 from 2.0.5 to 2.0.6 #697

Workflow file for this run

name: Test
on: [push,pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.8","3.9","3.10","3.11"]
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox --constraint constraints.txt
- name: Test
run: |
tox