mirror of
https://github.com/kakwa/ldapcherry
synced 2024-11-22 17:34:21 +01:00
20 lines
300 B
YAML
20 lines
300 B
YAML
|
name: Coverage
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
pull_request:
|
||
|
workflow_dispatch:
|
||
|
|
||
|
jobs:
|
||
|
build_and_test:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
|
||
|
- name: Install packages and setup ldap/AD
|
||
|
run: ./tests/test_env/deploy.sh
|
||
|
|
||
|
- name: Test
|
||
|
run: python3 setup.py test
|