2022-11-19 21:04:28 -08:00
|
|
|
name: Test
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
2022-11-25 16:31:23 -08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
python-version: ["3.10", "3.11"]
|
2022-11-19 21:04:28 -08:00
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: postgres:15
|
|
|
|
env:
|
|
|
|
POSTGRES_USER: postgres
|
|
|
|
POSTGRES_PASSWORD: postgres
|
|
|
|
POSTGRES_DB: postgres
|
2022-11-20 10:45:08 -08:00
|
|
|
ports: ["5432:5432"]
|
2022-11-19 21:04:28 -08:00
|
|
|
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2022-11-25 16:31:23 -08:00
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
2022-11-19 21:04:28 -08:00
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
2022-11-25 16:31:23 -08:00
|
|
|
python-version: ${{ matrix.python-version }}
|
2022-11-19 21:04:28 -08:00
|
|
|
cache: pip
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install -r requirements-dev.txt
|
|
|
|
- name: Run pytest
|
|
|
|
env:
|
2022-11-26 09:04:04 -08:00
|
|
|
TAKAHE_DATABASE_URL: "postgres://postgres:postgres@localhost:${{ job.services.postgres.ports[5432] }}/postgres"
|
|
|
|
TAKAHE_ENVIRONMENT: "test"
|
|
|
|
TAKAHE_SECRET_KEY: "testing_secret"
|
|
|
|
TAKAHE_MAIN_DOMAIN: "example.com"
|
2022-11-19 21:04:28 -08:00
|
|
|
run: |
|
|
|
|
python -m pytest
|
2022-11-20 10:45:08 -08:00
|
|
|
- name: Run pre-commit
|
|
|
|
run: |
|
2022-11-20 10:54:23 -08:00
|
|
|
pre-commit run -a --show-diff-on-failure
|