-
Notifications
You must be signed in to change notification settings - Fork 24
53 lines (40 loc) · 1.36 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# SPDX-FileCopyrightText: 2019–2022 Pynguin Contributors
#
# SPDX-License-Identifier: LGPL-3.0-or-later
name: CI
on: [push, pull_request]
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: ['3.10']
poetry-version: [1.3.2]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setup Poetry
uses: abatilo/[email protected]
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: poetry install
- name: Check imports with isort
run: poetry run isort --check-only . --profile black
- name: Check formatting with black
run: poetry run black --diff --check .
- name: Check typing with mypy
run: poetry run mypy pynguin
- name: Linting with flake8
run: poetry run flake8 --exclude replication,docs .
- name: Linting with pylint
run: poetry run pylint pynguin
- name: Check docstrings with darglint
run: poetry run darglint -v 2 pynguin/**/*.py
- name: Run tests
run: poetry run pytest --cov=pynguin --cov=tests --cov-branch --cov-report=term-missing tests/