We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 780e6b3 commit e4fc5aeCopy full SHA for e4fc5ae
.github/workflows/ruff.yaml
@@ -0,0 +1,23 @@
1
+name: Python ruff compliance check
2
+
3
+# Workflow triggers on PRs, pushes to main, once per day at midnight and can be started manually.
4
+on:
5
+ # By default, pull_request includes: opened, synchronize, or reopened
6
+ pull_request:
7
+ branches:
8
+ - main
9
+ push:
10
11
12
13
+# Only cancel ongoing runs for PRs
14
+concurrency:
15
+ group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
16
+ cancel-in-progress: true
17
18
+jobs:
19
+ ruff_python_check:
20
+ runs-on: ubuntu-24.04
21
+ steps:
22
+ - uses: actions/checkout@v4
23
+ - uses: astral-sh/ruff-action@v3
0 commit comments