moulinette/.github/workflows/tox.yml

47 lines
1.1 KiB
YAML
Raw Normal View History

name: Run tests for Moulinette
on:
push:
branches:
- dev
pull_request:
jobs:
2021-08-20 13:56:31 +02:00
test:
runs-on: ubuntu-latest
strategy:
matrix:
2021-08-22 10:54:54 +02:00
python-version: [3.7]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
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-08-22 11:18:24 +02:00
run: tox -e py37-pytest
invalidcode:
2021-08-22 11:18:24 +02:00
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Linter
run: tox -e py37-invalidcode