Skip to content

Bump urllib3 from 1.26.9 to 1.26.17 #10

Bump urllib3 from 1.26.9 to 1.26.17

Bump urllib3 from 1.26.9 to 1.26.17 #10

Workflow file for this run

name: Test
on:
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
poetry-version: ["1.1.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Set up Poetry ${{ matrix.poetry-version }}
uses: abatilo/[email protected]
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: poetry install
- name: Lint
run: poetry run invoke lint
- name: Test with pytest
run: poetry run invoke test