Skip to content

Bump urllib3 from 2.0.4 to 2.2.2 #411

Bump urllib3 from 2.0.4 to 2.2.2

Bump urllib3 from 2.0.4 to 2.2.2 #411

name: Build and Test
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build_and_test:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
# Checks-out your repository
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.7'
- name: pre-commit
run: make run-pre-commit
# setup and install everything and run tests
- name: up
run: make up
- name: tests
run: make tests