Skip to content

Add simulation documentation, fix #69 #48

Add simulation documentation, fix #69

Add simulation documentation, fix #69 #48

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
env:
OS: ubuntu-latest
PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
- name: Start Redis
uses: supercharge/redis-github-action@1.4.0
- name: Install dependencies
run: pip install -e .[dev]
- name: Run tests
run: pytest