canaille-globuzma/.github/workflows/tests.yaml

78 lines
2.4 KiB
YAML
Raw Normal View History

2022-11-24 14:34:30 +00:00
---
name: tests
on:
push:
branches:
2022-11-24 14:36:57 +00:00
- main
- '*.*.*'
2022-11-24 14:34:30 +00:00
pull_request:
branches:
2022-11-24 14:36:57 +00:00
- main
- '*.*.*'
2022-11-24 14:34:30 +00:00
jobs:
tests:
name: ${{ matrix.python }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python:
- '3.11'
- '3.10'
- '3.9'
- '3.8'
- '3.7'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
2022-11-24 14:53:25 +00:00
- name: Install apt dependencies
2022-11-24 15:04:08 +00:00
run: sudo apt-get --yes install apparmor-utils libsasl2-dev python3-dev libldap2-dev libssl-dev slapd ldap-utils
2022-11-24 14:53:25 +00:00
- name: App armor configuration for slapd
run: sudo aa-complain /usr/sbin/slapd
2022-11-24 14:34:30 +00:00
- uses: actions/cache@v1
with:
path: ~/.cache/pip
key: pip|${{ hashFiles('setup.py') }}|${{ hashFiles('tox.ini') }}
2022-11-24 14:53:25 +00:00
- run: pip install tox poetry coveralls pyyaml tomli
2022-11-24 14:34:30 +00:00
- run: tox -e py
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install apt dependencies
run: sudo apt-get --yes install apparmor-utils libsasl2-dev python3-dev libldap2-dev libssl-dev slapd ldap-utils
- name: App armor configuration for slapd
run: sudo aa-complain /usr/sbin/slapd
2022-11-24 14:34:30 +00:00
- uses: actions/cache@v1
with:
path: ~/.cache/pip
key: pip|${{ hashFiles('setup.py') }}|${{ hashFiles('tox.ini') }}
- uses: actions/cache@v1
with:
path: ~/.cache/pre-commit
key: pre-commit|${{ hashFiles('.pre-commit-config.yaml') }}
2022-11-24 14:53:25 +00:00
- run: pip install tox poetry coveralls pyyaml tomli
2022-11-24 14:34:30 +00:00
- run: tox -e style
doc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install apt dependencies
run: sudo apt-get --yes install apparmor-utils libsasl2-dev python3-dev libldap2-dev libssl-dev slapd ldap-utils
- name: App armor configuration for slapd
run: sudo aa-complain /usr/sbin/slapd
2022-11-24 14:34:30 +00:00
- uses: actions/cache@v1
with:
path: ~/.cache/pip
key: pip|${{ hashFiles('setup.py') }}|${{ hashFiles('tox.ini') }}
2022-11-24 14:53:25 +00:00
- run: pip install tox poetry coveralls pyyaml tomli
2022-11-24 14:34:30 +00:00
- run: tox -e doc