Skip to content

Bump idna from 3.6 to 3.7 in /requirements in the pip group #21

Bump idna from 3.6 to 3.7 in /requirements in the pip group

Bump idna from 3.6 to 3.7 in /requirements in the pip group #21

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- '*.x'
pull_request:
jobs:
tests:
name: ${{ matrix.python }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: ['3.12', '3.11', '3.10', '3.9', '3.8']
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c
with:
python-version: ${{ matrix.python }}
allow-prereleases: true
cache: pip
cache-dependency-path: requirements/*.txt
- run: pip install tox
- run: tox run -e py${{ matrix.python }}
typing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c
with:
python-version: '3.x'
cache: pip
cache-dependency-path: requirements/*.txt
- name: cache mypy
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319
with:
path: ./.mypy_cache
key: mypy|${{ hashFiles('pyproject.toml') }}
- run: pip install tox
- run: tox run -e typing