takahe/.github/workflows/test.yml

63 wiersze
1.7 KiB
YAML

name: Test
on:
push:
paths-ignore:
- 'docs/**'
branches:
- main
pull_request:
paths-ignore:
- 'docs/**'
jobs:
test:
name: test py${{ matrix.python-version }} with ${{ matrix.db_name }}
runs-on: ubuntu-latest
2022-12-18 05:26:15 +00:00
timeout-minutes: 8
2022-11-26 00:31:23 +00:00
strategy:
matrix:
python-version: ["3.11", "3.12"]
2022-12-01 16:53:45 +00:00
db:
- "postgres://postgres:postgres@localhost/postgres"
include:
- db: "postgres://postgres:postgres@localhost/postgres"
db_name: postgres
2022-12-01 16:53:45 +00:00
search: true
services:
postgres:
image: postgres:15
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
2022-11-20 18:45:08 +00:00
ports: ["5432:5432"]
2022-12-01 16:53:45 +00:00
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v3
2022-11-26 00:31:23 +00:00
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
2022-11-26 00:31:23 +00:00
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
sudo apt-get install -y libmemcached-dev libwebp-dev libjpeg-dev
python -m pip install -r requirements-dev.txt
- name: Run pytest
env:
2022-12-01 16:53:45 +00:00
TAKAHE_DATABASE_SERVER: ${{ matrix.db }}
TAKAHE_SEARCH: ${{ matrix.search }}
TAKAHE_ENVIRONMENT: "test"
TAKAHE_SECRET_KEY: "testing_secret"
TAKAHE_MAIN_DOMAIN: "example.com"
run: |
python -m pytest
2022-11-20 18:45:08 +00:00
- name: Run pre-commit
run: |
pre-commit run -a --show-diff-on-failure