Skip to content

build(deps): bump urllib3 from 1.26.13 to 1.26.18 #129

build(deps): bump urllib3 from 1.26.13 to 1.26.18

build(deps): bump urllib3 from 1.26.13 to 1.26.18 #129

Workflow file for this run

name: Test
on:
push:
jobs:
build:
name: Nosetests
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry==1.2.2
poetry install --sync
- name: Test
run: poetry run nose2 -v