Skip to content

Commit 2c55207

Browse files
authored
Merge pull request #7606 from cclauss/GitHub-Action-for-Ruff
Add a GitHub Action for Ruff
2 parents 85f732b + dc1d97d commit 2c55207

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/ruff.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: ruff
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
7+
branches:
8+
- master
9+
jobs:
10+
ruff:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
- run: pip install --user ruff
15+
- run: ruff --format=github .

0 commit comments

Comments
 (0)