Skip to content

Bump mypy from 1.7.1 to 1.8.0 #464

Bump mypy from 1.7.1 to 1.8.0

Bump mypy from 1.7.1 to 1.8.0 #464

Workflow file for this run

name: esdb-py
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Start EventStore
run: docker-compose up -d
- name: Install poetry
run: curl -sSL https://install.python-poetry.org | python -
- name: Install deps
run: poetry install
- name: Lint
run: make lint
- name: Tests
run: make test-ci
- name: Coverage
uses: codecov/codecov-action@v3