Skip to content

build(deps-dev): bump dnspython from 2.4.1 to 2.6.1 #480

build(deps-dev): bump dnspython from 2.4.1 to 2.6.1

build(deps-dev): bump dnspython from 2.4.1 to 2.6.1 #480

Workflow file for this run

name: PR Branch Build and Test
on:
# Triggers the workflow on pull request events but only for the master branch
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry==1.5.1
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
cache: "poetry"
- run: poetry install
- run: |
poetry run poe lint
poetry run pytest
poetry build -f sdist
poetry build -f wheel
- if: ${{ matrix.python_version == '3.8' }}
run: poetry run poe doc