Skip to content

chore(deps): update postgres:18.0-alpine docker digest to 0ce0d1f #4123

chore(deps): update postgres:18.0-alpine docker digest to 0ce0d1f

chore(deps): update postgres:18.0-alpine docker digest to 0ce0d1f #4123

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version:
- '3.11'
- '3.12'
- '3.13'
- '3.14'
name: Python ${{ matrix.python-version }}
services:
redis:
image: redis:8.2.2-alpine@sha256:59b6e694653476de2c992937ebe1c64182af4728e54bb49e9b7a6c26614d8933
ports:
- 6379:6379
postgres:
image: postgres:18.0-alpine@sha256:0ce0d1fa5bf54b7b338e09829ab76b479dbd0702da50bf0cdf5c258208e47f40
ports:
- 5432:5432
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Configure git
run: |
git config --global user.email "ci@example.com"
git config --global user.name "CI Job"
- name: Install apt dependencies
run: |
sudo apt update
sudo apt install libcairo-dev gir1.2-pango-1.0 libgirepository-2.0-dev libacl1-dev gettext liblz4-dev libzstd-dev libxxhash-dev gir1.2-rsvg-2.0 libleptonica-dev libtesseract-dev
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
with:
python-version: ${{ matrix.python-version }}
- uses: astral-sh/setup-uv@2ddd2b9cb38ad8efd50337e8ab201519a34c9f24 # v7.1.1
with:
cache-suffix: test-${{ matrix.python-version }}
version: 0.9.5
- name: Install pip dependencies
run: |
uv sync --dev
uv pip install https://github.com/WeblateOrg/weblate/archive/main.zip
- name: Test with Django
env:
CI_DATABASE: postgresql
CI_DB_PASSWORD: postgres
CI_DB_HOST: localhost
DJANGO_SETTINGS_MODULE: wlhosted.settings_test
run: |
uv run --no-sync weblate collectstatic --noinput
uv run --no-sync pytest
- uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
with:
token: ${{secrets.CODECOV_TOKEN}}
flags: unittests
name: Python ${{ matrix.python-version }}
permissions:
contents: read