Skip to content

Bump tornado from 6.4.1 to 6.4.2 #47

Bump tornado from 6.4.1 to 6.4.2

Bump tornado from 6.4.1 to 6.4.2 #47

Workflow file for this run

name: Run Pytest
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install -r requirements.txt
- name: Run Pytest
run: |
pytest