File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -16,25 +16,31 @@ jobs:
16
16
17
17
steps :
18
18
- uses : actions/checkout@v4
19
+
19
20
- name : Set up Python ${{ matrix.python-version }}
20
21
uses : actions/setup-python@v5
21
22
with :
22
23
python-version : ${{ matrix.python-version }}
24
+
23
25
- name : Install dependencies
24
26
run : |
25
27
python -m pip install --upgrade pip
26
28
pip install -r requirements.txt
27
29
pip install -r test-requirements.txt
30
+
28
31
- name : Check style
29
32
run : |
30
33
python setup.py check_style
34
+
31
35
- name : Linter
32
36
run : |
33
37
pylint --disable=fixme --disable=duplicate-code \
34
38
$(git ls-files '*.py')
39
+
35
40
- name : Install package
36
41
run : |
37
42
python setup.py install
43
+
38
44
- name : Run tests
39
45
run : |
40
46
python pyftdi/tests/toolsimport.py
Original file line number Diff line number Diff line change @@ -15,19 +15,23 @@ jobs:
15
15
16
16
steps :
17
17
- uses : actions/checkout@v4
18
+
18
19
- name : Set up Python ${{ matrix.python-version }}
19
20
uses : actions/setup-python@v5
20
21
with :
21
22
python-version : ${{ matrix.python-version }}
23
+
22
24
- name : Install dependencies
23
25
run : |
24
26
python -m pip install --upgrade pip
25
27
pip install -r requirements.txt
26
28
pip install setuptools wheel sphinx sphinx_rtd_theme sphinx_autodoc_typehints
29
+
27
30
- name : Build package
28
31
run : |
29
32
python setup.py bdist
30
33
python setup.py sdist bdist_wheel
34
+
31
35
- name : Build documentation
32
36
run : |
33
37
mkdir doc
You can’t perform that action at this time.
0 commit comments