Fixed README.md (asgi.py). #253
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
env: | |
POETRY_HOME: /home/runner/.local | |
POETRY_CACHE_DIR: /home/runner/.local/.cache | |
jobs: | |
prepare: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] | |
os: [ ubuntu-20.04 ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set up cache | |
id: cached-dependencies | |
uses: actions/cache@v4 | |
with: | |
path: /home/runner/.local | |
key: os-${{ matrix.os }}-python-${{ matrix.python-version}}-${{ hashFiles('**/poetry.lock') }} | |
- name: Install and set up Poetry | |
if: steps.cached-dependencies.outputs.cache-hit != 'true' | |
run: make install-poetry | |
- name: Install packages | |
if: steps.cached-dependencies.outputs.cache-hit != 'true' | |
run: | | |
make install-packages opts="--no-root" | |
poetry run python -c "import django; print('Django', django.__version__)" | |
poetry run python -c "import psycopg2; print('Psycopg2', psycopg2.__version__)" | |
lint: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] | |
os: [ubuntu-20.04] | |
runs-on: ${{ matrix.os }} | |
needs: prepare | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set up cache | |
uses: actions/cache@v4 | |
with: | |
path: /home/runner/.local | |
key: os-${{ matrix.os }}-python-${{ matrix.python-version}}-${{ hashFiles('**/poetry.lock') }} | |
- name: Lint | |
run: make lint | |
tests: | |
needs: prepare | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] | |
postgres-version: ["13", "14", "15", "16", "17"] | |
os: [ubuntu-20.04] | |
runs-on: ${{ matrix.os }} | |
services: | |
postgres: | |
image: postgres:${{ matrix.postgres-version }} | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_DB: postgres | |
ports: | |
- "5432:5432" | |
# Set health checks to wait until postgres has started | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set up cache | |
uses: actions/cache@v4 | |
with: | |
path: /home/runner/.local | |
key: os-${{ matrix.os }}-python-${{ matrix.python-version}}-${{ hashFiles('**/poetry.lock') }} | |
- name: Setup database | |
run: | | |
PGPASSWORD=postgres psql -c "CREATE USER eventsourcing WITH PASSWORD 'eventsourcing' CREATEDB;" -U postgres -h localhost | |
# PGPASSWORD=postgres psql -c 'CREATE DATABASE eventsourcing_django;' -U postgres -h localhost | |
# PGPASSWORD=postgres psql -c "ALTER DATABASE eventsourcing_django OWNER TO eventsourcing;" -U postgres -h localhost | |
# PGPASSWORD=postgres psql eventsourcing_django -c "CREATE SCHEMA myschema AUTHORIZATION eventsourcing" -U postgres -h localhost | |
- name: Run tests | |
run: make test | |
env: | |
POSTGRES_USER: eventsourcing | |
POSTGRES_PASSWORD: eventsourcing | |
POSTGRES_DB: eventsourcing_django | |
POSTGRES_HOST: 127.0.0.1 | |
POSTGRES_PORT: 5432 |