Skip to content

Bump idna from 3.4 to 3.7 #112

Bump idna from 3.4 to 3.7

Bump idna from 3.4 to 3.7 #112

Workflow file for this run

name: tests
on: [push]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: "3.12"
cache: "poetry"
- name: Install dependencies
run: |
poetry install
- name: Test with pytest
run: |
set -ex
poetry run coverage run -m pytest
- name: Convert coverage to XML
run: |
set -ex
poetry run coverage xml
- name: Upload coverage to codecov
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: |
bash <(curl -s https://codecov.io/bash)