Skip to content

The Great LDAPification #72

The Great LDAPification

The Great LDAPification #72

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install apt dependencies
run: |
sudo apt update
sudo apt install libldap-2.5-0 libldap-dev libsasl2-dev libkrb5-dev
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.12
- name: cache poetry install
uses: actions/cache@v2
with:
path: ~/.local
key: poetry-1.8.3-0
- uses: snok/install-poetry@v1
with:
version: 1.8.3
virtualenvs-create: true
virtualenvs-in-project: true
- name: cache deps
id: cache-deps
uses: actions/cache@v2
with:
path: .venv
key: pydeps-${{ hashFiles('**/poetry.lock') }}
- run: poetry install --no-interaction --no-root
if: steps.cache-deps.outputs.cache-hit != 'true'
- run: poetry install --no-interaction
- run: poetry run pytest