2021-09-01 15:43:27 +02:00
|
|
|
name: Tests
|
2021-08-20 10:38:15 +02:00
|
|
|
|
|
|
|
on:
|
2021-08-22 11:28:13 +02:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- dev
|
2021-09-01 17:01:37 +02:00
|
|
|
- bullseye
|
2021-08-22 11:28:13 +02:00
|
|
|
pull_request:
|
2021-08-20 10:38:15 +02:00
|
|
|
|
|
|
|
jobs:
|
2021-08-20 13:56:31 +02:00
|
|
|
test:
|
2021-08-20 10:38:15 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-09-01 17:00:29 +02:00
|
|
|
python-version: [3.9]
|
2021-08-20 10:38:15 +02:00
|
|
|
steps:
|
2024-02-25 07:22:16 +01:00
|
|
|
- uses: actions/checkout@v4
|
2021-08-20 10:38:15 +02:00
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
2024-02-25 07:22:16 +01:00
|
|
|
uses: actions/setup-python@v5
|
2021-08-20 10:38:15 +02:00
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
2021-08-20 13:49:50 +02:00
|
|
|
- name: Install apt dependencies
|
2021-08-20 13:56:31 +02:00
|
|
|
run: sudo apt install ldap-utils slapd libsasl2-dev libldap2-dev libssl-dev
|
2021-08-20 13:49:50 +02:00
|
|
|
- name: Install tox
|
2021-08-20 10:38:15 +02:00
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install tox tox-gh-actions
|
|
|
|
- name: Test with tox
|
2021-09-01 17:00:29 +02:00
|
|
|
run: tox -e py39-pytest
|
2021-08-22 11:18:24 +02:00
|
|
|
|
2021-08-27 22:13:31 +02:00
|
|
|
invalidcode:
|
2021-08-22 11:18:24 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-09-01 17:00:29 +02:00
|
|
|
python-version: [3.9]
|
2021-08-22 11:18:24 +02:00
|
|
|
steps:
|
2024-02-25 07:22:16 +01:00
|
|
|
- uses: actions/checkout@v4
|
2021-08-22 11:18:24 +02:00
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
2024-02-25 07:22:16 +01:00
|
|
|
uses: actions/setup-python@v5
|
2021-08-22 11:18:24 +02:00
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install tox
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install tox tox-gh-actions
|
|
|
|
- name: Linter
|
2021-09-01 17:00:29 +02:00
|
|
|
run: tox -e py39-invalidcode
|
2021-09-17 16:17:53 +02:00
|
|
|
- name: Mypy
|
2021-10-02 19:59:09 +02:00
|
|
|
run: tox -e py39-mypy
|