Skip to content

Bump idna from 3.6 to 3.7 #666

Bump idna from 3.6 to 3.7

Bump idna from 3.6 to 3.7 #666

Workflow file for this run

name: Tests
on: pull_request
jobs:
Linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Linting
run: |
pip install pre-commit
pre-commit run --all-files
Tests:
needs: Linting
name: ${{ matrix.os }} / ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
os: [Ubuntu, MacOS, Windows]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Get full Python version
id: full-python-version
shell: bash
run: echo ::set-output name=version::$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))")
- name: Install Poetry
run: |
pip install --upgrade setuptools
pip install poetry==1.3.2
- name: Install dependencies
run: poetry install
- name: Run pytest
shell: bash
run: poetry run pytest