We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 165e9aa commit 53f71e9Copy full SHA for 53f71e9
.github/workflows/pythonFormatting.yml
@@ -40,8 +40,17 @@ jobs:
40
- name: Checkout Repository
41
uses: actions/checkout@v4
42
43
- - name: Black Code Formatter
44
- uses: psf/black@stable
+ - name: Setup Python
+ uses: actions/setup-python@v5
45
with:
46
- options: "--check --exclude operator/algorithm"
47
- src: "src/main/python/systemds src/main/python/tests"
+ python-version: '3.x'
+
48
+ - name: Install Black
49
+ run: |
50
+ pip install --upgrade pip
51
+ pip install black
52
53
+ - name: Run Black Check
54
55
+ black --check --exclude operator/algorithm \
56
+ src/main/python/systemds src/main/python/tests
0 commit comments