Skip to content

Fix twitter example app. #78

Fix twitter example app.

Fix twitter example app. #78

Workflow file for this run

name: Tests
on: [push]
jobs:
tests:
name: ${{ matrix.python-version }}
runs-on: ubuntu-latest
services:
redis:
image: redis
ports:
- 6379:6379
strategy:
fail-fast: false
matrix:
python-version: [3.8, "3.10", "3.12", "3.14"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: deps
run: pip install .
- name: runtests
run: python runtests.py