Skip to content

Github actions update #55

Github actions update

Github actions update #55

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.9, "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: pip deps
run: pip install -r requirements.txt
- name: pypa is a joke
run: pip install packaging
- name: runtests
run: python runtests.py