Skip to content

Implement make_move, make it possible to update events to the repository #4

Implement make_move, make it possible to update events to the repository

Implement make_move, make it possible to update events to the repository #4

Workflow file for this run

name: Tests
on:
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
services:
eventstoredb:
image: eventstore/eventstore:latest
env:
EVENTSTORE_CLUSTER_SIZE: 1
EVENTSTORE_RUN_PROJECTIONS: All
EVENTSTORE_START_STANDARD_PROJECTIONS: true
EVENTSTORE_HTTP_PORT: 2113
EVENTSTORE_INSECURE: true
EVENTSTORE_ENABLE_ATOM_PUB_OVER_HTTP: true
ports:
- 1113:1113
- 2113:2113
strategy:
max-parallel: 4
matrix:
python-version: ['3.12']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install --with dev
- name: Run tests
run: poetry run pytest