From de16df475f9908fa9312e590491a4d3aed357b32 Mon Sep 17 00:00:00 2001 From: kakwa Date: Wed, 13 Mar 2024 00:06:44 +0100 Subject: [PATCH] add basic gh action tests --- .github/workflows/tests.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..50f90b0 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,19 @@ +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