Skip to content

Base implementation of a Vulnerability models #94 #636

Base implementation of a Vulnerability models #94

Base implementation of a Vulnerability models #94 #636

Workflow file for this run

name: Test CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
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 update
sudo apt-get install -y libldap2-dev libsasl2-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: .venv/bin/python manage.py test --verbosity=2 --noinput --parallel