add CasDB and KevGa-NeoDB to the server list in documentation (#924) #1280
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: unit test | |
on: | |
push: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
django: | |
runs-on: ubuntu-latest | |
services: | |
redis: | |
image: redis | |
ports: | |
- 6379:6379 | |
db: | |
image: postgres | |
env: | |
POSTGRES_USER: testuser | |
POSTGRES_PASSWORD: testpass | |
POSTGRES_DB: test_neodb | |
ports: | |
- 5432:5432 | |
db2: | |
image: postgres | |
env: | |
POSTGRES_USER: testuser | |
POSTGRES_PASSWORD: testpass | |
POSTGRES_DB: test_neodb_takahe | |
ports: | |
- 15432:5432 | |
typesense: | |
image: typesense/typesense:27.1 | |
env: | |
TYPESENSE_API_KEY: testpass | |
TYPESENSE_DATA_DIR: /data | |
ports: | |
- 8108:8108 | |
volumes: | |
- ts_data:/data | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: ['3.12'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: pip | |
- name: Install Dependencies | |
run: | | |
pip install -r requirements.lock | |
sudo apt install -y gettext | |
- name: Run Tests | |
env: | |
NEODB_DB_URL: postgres://testuser:[email protected]/test_neodb | |
TAKAHE_DB_URL: postgres://testuser:[email protected]/test_neodb_takahe | |
NEODB_REDIS_URL: redis://127.0.0.1:6379/0 | |
NEODB_SEARCH_URL: typesense://testuser:[email protected]:8108/catalog | |
NEODB_SITE_NAME: test | |
NEODB_SITE_DOMAIN: test.domain | |
NEODB_SECRET_KEY: test | |
run: | | |
python manage.py compilemessages -i .venv -l zh_Hans | |
python manage.py test |