Bump tornado from 6.1 to 6.4.2 #1931
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python CI | |
on: | |
- push | |
- pull_request | |
jobs: | |
backend: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [ "3.9" ] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: 3.9 | |
- uses: Gr1N/setup-poetry@v8 | |
- uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pypoetry/virtualenvs | |
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }} | |
- run: poetry --version | |
- name: Install dependencies | |
run: | | |
poetry install --without dev,docs --extras cpu --no-interaction --no-ansi | |
- name: Test with pytest/flake8/mypy | |
env: | |
PYTEST_ADDOPTS: "--color=yes" | |
run: | | |
make test |