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
+3 -3
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 ./
+2 -2
View File
@@ -29,8 +29,6 @@ jobs:
working-directory: ./web
- name: Set up dependencies
run: bundle install
- name: Run rufo
run: bundle exec rufo --check .
- name: Run tests
run: |
mkdir -p tmp/test-results
@@ -53,3 +51,5 @@ jobs:
flags: ruby-${{ matrix.ruby-version }}
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Run rufo
run: bundle exec rufo --check .