-
-
Notifications
You must be signed in to change notification settings - Fork 8
66 lines (66 loc) · 1.88 KB
/
linters.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
name: 🧹 Lint Check
on:
push:
branches:
- develop
paths:
- "flasher/**"
- "deploy/**"
pull_request:
types: [ opened, synchronize, reopened ]
branches:
- develop
paths:
- "flasher/**"
- "deploy/**"
jobs:
check_flasher:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check flasher with proof-html
uses: anishathalye/proof-html@v2
with:
directory: ${{ github.workspace }}/flasher
run_black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Black in the check mode
uses: psf/black@stable
with:
options: "--check --verbose --line-length 120 --diff --color --target-version py312"
src: ${{ github.workspace }}/deploy
version: "~= 24.0"
run_pytest:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12.2'
- name: Install dependencies from deploy subfolders
run: |
cd deploy
for req_file in $(find . -name "requirements.txt"); do
echo "Installing dependencies from $req_file"
pip install -r "$req_file"
done
- name: Add deploy to PYTHONPATH
run: |
DEPLOY_PATH=$(pwd)/deploy
if [ -z "$PYTHONPATH" ]; then
echo "PYTHONPATH=$DEPLOY_PATH" >> $GITHUB_ENV
else
echo "PYTHONPATH=${PYTHONPATH}:$DEPLOY_PATH" >> $GITHUB_ENV
fi
- name: Debug PYTHONPATH
run: |
echo "Current PYTHONPATH: $PYTHONPATH"
- name: Run PyTest in deploy/tests
run: |
cd deploy/tests
pip install pytest # Ensure pytest is installed
pytest --tb=short -v --capture=tee-sys