Skip to content

Bump urllib3 from 1.26.15 to 1.26.18 #8

Bump urllib3 from 1.26.15 to 1.26.18

Bump urllib3 from 1.26.15 to 1.26.18 #8

Workflow file for this run

---
name: Test
on:
pull_request:
branches:
- main
- dev
push:
branches:
- main
- dev
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
python_version: ['3.8']
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
- name: Install poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: "1.2.2"
- name: Install dependencies
run: poetry install
- name: Run main tests
shell: bash
run: poetry run pytest