Skip to content

Bump urllib3 from 2.0.4 to 2.0.6 #80

Bump urllib3 from 2.0.4 to 2.0.6

Bump urllib3 from 2.0.4 to 2.0.6 #80

Workflow file for this run

name: Build
on:
push:
branches:
- main
tags:
- v*
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install poetry
uses: abatilo/actions-poetry@v2.1.0
with:
poetry-version: 1.5.1
- name: Install dependencies
run:
poetry install
- name: Run tests
run: |
poetry run pytest
- name: Build
run: poetry build