Reorder lint steps after tests in CI (#168)

This commit is contained in:
l5y
2025-09-23 18:31:38 +02:00
committed by GitHub
parent a46bed1c33
commit 4254dbda91
2 changed files with 5 additions and 5 deletions

View File

@@ -22,9 +22,6 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install black pytest pytest-cov meshtastic
- name: Lint with black
run: |
black --check ./
- name: Test with pytest and coverage
run: |
mkdir -p reports
@@ -45,3 +42,6 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
files: reports/python-junit.xml
flags: python-ingestor
- name: Lint with black
run: |
black --check ./