Skip to content

live-document extended - deep copy on certain operations. #70

live-document extended - deep copy on certain operations.

live-document extended - deep copy on certain operations. #70

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
services:
nats:
image: nats:latest
ports:
- 4222:4222
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python -
- name: Install dependencies
run: |
poetry install
- name: Run tests
run: |
poetry run pytest