Skip to content

Merge pull request #63 from Doist/kjh/ruffage #55

Merge pull request #63 from Doist/kjh/ruffage

Merge pull request #63 from Doist/kjh/ruffage #55

Workflow file for this run

name: Run test suite
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 60
name: "Python ${{ matrix.python-version }}"
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install poetry
poetry install
- name: Install redis
run: |
sudo apt-get install redis -y
- name: Run tests
run: poetry run pytest -vv