Skip to content

[Snyk] Security upgrade tornado from 6.2 to 6.4.1 #58

[Snyk] Security upgrade tornado from 6.2 to 6.4.1

[Snyk] Security upgrade tornado from 6.2 to 6.4.1 #58

Workflow file for this run

name: Unittest
on:
push:
branches: [ master, main, release ]
pull_request:
branches: [ master, main, release ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
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;
pip install -r requirements.txt;
pip install -r requirements/requirements-test.txt;
- name: Test with pytest
run: pytest