-
-
Notifications
You must be signed in to change notification settings - Fork 7
70 lines (67 loc) · 2.38 KB
/
test.yml
File metadata and controls
70 lines (67 loc) · 2.38 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
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.3-alpine@sha256:28c9c4d7596949a24b183eaaab6455f8e5d55ecbf72d02ff5e2c17fe72671d31
ports:
- 6379:6379
postgres:
image: postgres:18.0-alpine@sha256:48c8ad3a7284b82be4482a52076d47d879fd6fb084a1cbfccbd551f9331b0e40
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@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7.1.2
with:
cache-suffix: test-${{ matrix.python-version }}
version: 0.9.7
- 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