-
Notifications
You must be signed in to change notification settings - Fork 1
36 lines (34 loc) · 1.09 KB
/
github-actions.yml
File metadata and controls
36 lines (34 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: CI
on: [push, pull_request]
env:
POETRY_HOME: /home/runner/.local
POETRY_CACHE_DIR: /home/runner/.local/.cache
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
docker-image:
- docker.eventstore.com/eventstore-ce/eventstoredb-ce:22.10.4-jammy
- docker.eventstore.com/eventstore-ce/eventstoredb-oss:23.10.2-jammy
- docker.eventstore.com/eventstore/eventstoredb-ee:24.10.0-x64-8.0-bookworm-slim
- docker.eventstore.com/kurrent-latest/kurrentdb:25.0.0-x64-8.0-bookworm-slim
env:
DOCKER_IMAGE: ${{ matrix.docker-image }}
runs-on: "ubuntu-22.04"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: make install-poetry
- name: Install packages
run: make install
- name: Start KurrentDB
run: make start-kurrentdb
- name: Lint
run: make lint
- name: Test
run: make test