Release 5.1 (#125) #392
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: Test CI | |
on: [push, pull_request] | |
env: | |
DATABASE_NAME: dejacode | |
DATABASE_USER: dejacode | |
DATABASE_PASSWORD: dejacode | |
POSTGRES_INITDB_ARGS: --encoding=UTF-8 --lc-collate=en_US.UTF-8 --lc-ctype=en_US.UTF-8 | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
services: | |
postgres: | |
image: postgres:16 | |
env: | |
POSTGRES_DB: ${{ env.DATABASE_NAME }} | |
POSTGRES_USER: ${{ env.DATABASE_USER }} | |
POSTGRES_PASSWORD: ${{ env.DATABASE_PASSWORD }} | |
POSTGRES_INITDB_ARGS: ${{ env.POSTGRES_INITDB_ARGS }} | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install python-ldap OS dependencies | |
run: sudo apt-get install -y libsasl2-dev libldap2-dev libssl-dev | |
- name: Install dependencies | |
run: make dev envfile | |
- name: Validate code format | |
run: make check | |
- name: Start Redis | |
uses: supercharge/redis-github-action@1.5.0 | |
# - name: Check Django deployment settings | |
# run: make check-deploy | |
- name: Build the documentation | |
run: make docs | |
- name: Run tests | |
run: bin/python manage.py test --verbosity=2 --noinput --parallel |