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 1432c0e commit 3342901Copy full SHA for 3342901
.github/workflows/ci.yml
@@ -94,5 +94,32 @@ jobs:
94
pdm install -G:all
95
96
- name: Check import formatting
97
+ run: |
98
+ 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
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
run: |
125
pdm run isort --check --verbose
0 commit comments