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 8fa44de commit fce2d54Copy full SHA for fce2d54
.github/workflows/ci.yml
@@ -95,4 +95,31 @@ jobs:
95
96
- name: Check import formatting
97
run: |
98
- pdm run isort --check --verbose
+ pdm run isort --check --verbose
99
+
100
+ black:
101
+ name: black
102
+ runs-on: ubuntu-latest
103
+ steps:
104
+ - name: Checkout
105
+ uses: actions/checkout@v4
106
+ with:
107
+ fetch-depth: 0
108
109
+ - name: Set up Python 3.13
110
+ uses: actions/setup-python@v4
111
112
+ python-version: "3.13"
113
114
+ - name: Install PDM
115
+ run: |
116
+ python -m pip install --upgrade pip
117
+ pip install pdm
118
119
+ - name: Install dependencies
120
121
+ pdm install -G:all
122
123
+ - name: Check code style
124
125
+ pdm run black --check --verbose
0 commit comments