Skip to content

build(deps): bump idna from 3.6 to 3.7 in /docs (#48) #206

build(deps): bump idna from 3.6 to 3.7 in /docs (#48)

build(deps): bump idna from 3.6 to 3.7 in /docs (#48) #206

Workflow file for this run

name: tests
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt
- name: Test with unittest
run: |
python setup.py test