Skip to content

Commit baf6da7

Browse files
committed
RDBC-800 Skip checking code format on 3.7 Python
1 parent 207b249 commit baf6da7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/RavenClient.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
strategy:
3131
matrix:
32-
python-version: [ '3.7', '3.8', '3.9' , '3.10']
32+
python-version: [ '3.7', '3.8', '3.10' ,'3.11', '3.12']
3333
serverVersion: [ "5.2", "5.4", "6.0" ]
3434
fail-fast: false
3535

@@ -82,9 +82,11 @@ jobs:
8282
run: mkdir RavenDB/Server/certs && cp certs/server.pfx RavenDB/Server/certs/
8383

8484
- name: Install black linter
85+
if: ${{ matrix.python-version != '3.7' }}
8586
run: pip install black
8687

8788
- name: Check code format
89+
if: ${{ matrix.python-version != '3.7' }}
8890
run: black --check .
8991

9092
- name: Run tests

0 commit comments

Comments
 (0)