moulinette/.github/workflows/tox.yml

50 lines
1.2 KiB
YAML
Raw Normal View History

2021-09-01 15:43:27 +02:00
name: Tests
on:
push:
branches:
- dev
2021-09-01 17:01:37 +02:00
- bullseye
pull_request:
jobs:
2021-08-20 13:56:31 +02:00
test:
runs-on: ubuntu-latest
strategy:
matrix:
2021-09-01 17:00:29 +02:00
python-version: [3.9]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
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
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
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:
- uses: actions/checkout@v4
2021-08-22 11:18:24 +02:00
- name: Set up Python ${{ matrix.python-version }}
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
- name: Mypy
2021-10-02 19:59:09 +02:00
run: tox -e py39-mypy