-
Notifications
You must be signed in to change notification settings - Fork 1
32 lines (27 loc) · 756 Bytes
/
Copy pathlint.yml
File metadata and controls
32 lines (27 loc) · 756 Bytes
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
name: Lint
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v47
with:
files: "**/*.py"
- name: Black formatter
if: ${{ steps.changed-files.outputs.all_changed_files != '' }}
uses: psf/black@25.11.0
with:
src: ${{ steps.changed-files.outputs.all_changed_files }}
- name: Ruff linter
if: ${{ steps.changed-files.outputs.all_changed_files != '' }}
uses: chartboost/ruff-action@v1
with:
src: ${{ steps.changed-files.outputs.all_changed_files }}