-
Notifications
You must be signed in to change notification settings - Fork 0
103 lines (78 loc) · 2.34 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
name: ci
on:
push:
branches:
- master
pull_request:
branches:
- master
defaults:
run:
shell: bash
env:
LANG: en_US.utf-8
LC_ALL: en_US.utf-8
PYTHONIOENCODING: UTF-8
# To fix an error when running Poetry on Windows
# (https://github.com/python-poetry/poetry/issues/2629),
# we set Poetry's cache directory to .poetry_cache in the current directory.
# It makes it easier to later remove the virtualenv when it's broken.
# Absolute path is necessary to avoid this issue:
# https://github.com/python-poetry/poetry/issues/3049
POETRY_CACHE_DIR: ${{ github.workspace }}/.poetry_cache
jobs:
quality:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Set up Poetry
run: pip install poetry
- name: Set up the cache
uses: actions/cache@v1
with:
path: .poetry_cache
key: quality-poetry-cache
- name: Set up the project
run: poetry install -vv
- name: Check if the documentation builds correctly
run: poetry run duty check-docs
- name: Check the code quality
run: poetry run duty check-code-quality
- name: Check if the code is correctly typed
run: poetry run duty check-types
- name: Check for vulnerabilities in dependencies
run: |
pip install safety
poetry run duty check-dependencies
tests:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.9', '3.10']
exclude:
- os: windows-latest
python-version: '3.10'
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Set up Poetry
run: pip install poetry
- name: Set up the cache
uses: actions/cache@v1
with:
path: .poetry_cache
key: tests-poetry-cache-${{ matrix.os }}-py${{ matrix.python-version }}
- name: Set up the project
run: poetry install -vv || { rm -rf .poetry_cache/virtualenvs/*; poetry install -vv; }
- name: Run the test suite
run: poetry run duty test