Skip to content

Bump idna from 2.8 to 3.7 #18

Bump idna from 2.8 to 3.7

Bump idna from 2.8 to 3.7 #18

Workflow file for this run

name: Run Tests
on:
workflow_call:
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ./
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run Tests
run: |
echo "$GITHUB_REF"
python3 -m unittest