Feature: Add support to search within multiple organisational units in ldap #675
This file contains hidden or 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: Run unit tests on Docker container | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| run-unit-tests: | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false # do not keep the token around | |
| - name: Generate the .env file and the SECRET_KEY | |
| run: make envfile | |
| - name: Build Docker image | |
| run: docker compose -f compose.yml -f compose.build.yml build | |
| - name: Run tests | |
| run: | | |
| docker compose -f compose.yml -f compose.build.yml run web \ | |
| python ./manage.py test --verbosity=2 --noinput --parallel auto |