Skip to content

return lines to show command output to user. fix #205 #62

return lines to show command output to user. fix #205

return lines to show command output to user. fix #205 #62

Workflow file for this run

name: tox
on: [push, pull_request]
jobs:
tox:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.7, 3.8, 3.9, "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Start Redis
uses: supercharge/redis-github-action@1.5.0
- name: Install Tox and any other packages
run: pip install tox
- name: Run Tox
run: tox -e py
- name: Run flake8 / docs
run: tox -e flake8,docs
if: matrix.python == 3.8