Skip to content

Commit 0590f38

Browse files
committed
.github: improve readability
Signed-off-by: Emmanuel Blot <emmanuel.blot@free.fr>
1 parent 48188b6 commit 0590f38

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/pythonchecksyntax.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,31 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v4
19+
1920
- name: Set up Python ${{ matrix.python-version }}
2021
uses: actions/setup-python@v5
2122
with:
2223
python-version: ${{ matrix.python-version }}
24+
2325
- name: Install dependencies
2426
run: |
2527
python -m pip install --upgrade pip
2628
pip install -r requirements.txt
2729
pip install -r test-requirements.txt
30+
2831
- name: Check style
2932
run: |
3033
python setup.py check_style
34+
3135
- name: Linter
3236
run: |
3337
pylint --disable=fixme --disable=duplicate-code \
3438
$(git ls-files '*.py')
39+
3540
- name: Install package
3641
run: |
3742
python setup.py install
43+
3844
- name: Run tests
3945
run: |
4046
python pyftdi/tests/toolsimport.py

.github/workflows/pythonpackage.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,23 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@v4
18+
1819
- name: Set up Python ${{ matrix.python-version }}
1920
uses: actions/setup-python@v5
2021
with:
2122
python-version: ${{ matrix.python-version }}
23+
2224
- name: Install dependencies
2325
run: |
2426
python -m pip install --upgrade pip
2527
pip install -r requirements.txt
2628
pip install setuptools wheel sphinx sphinx_rtd_theme sphinx_autodoc_typehints
29+
2730
- name: Build package
2831
run: |
2932
python setup.py bdist
3033
python setup.py sdist bdist_wheel
34+
3135
- name: Build documentation
3236
run: |
3337
mkdir doc

0 commit comments

Comments
 (0)