Skip to content

build(deps-dev): bump idna from 3.2 to 3.7 #85

build(deps-dev): bump idna from 3.2 to 3.7

build(deps-dev): bump idna from 3.2 to 3.7 #85

Workflow file for this run

name: New pull request received
on: [pull_request, workflow_dispatch]
jobs:
check:
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Check out
uses: actions/checkout@main
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@main
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install -U pip poetry invoke
inv env.init-dev --no-pre-commit
- name: Style check
run: |
inv style
- name: Check vulnerability
run: |
inv secure
- name: Run tests
run: |
poetry run tox