Skip to content

Commit 5eb8eb6

Browse files
committed
Fix package install order in lint workflow
1 parent c0c0cc5 commit 5eb8eb6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ jobs:
4444

4545
- name: Install packages for async_to_sync
4646
run: |
47-
pip install ./gaussdb[dev,test]
48-
pip install types-polib
49-
pip install ./tools/isort-gaussdb/
50-
pip install ./gaussdb_pool
47+
pip install ./tools/isort-gaussdb/
48+
pip install ./gaussdb[dev,test]
49+
pip install types-polib
50+
pip install ./gaussdb_pool
5151
5252
- name: Check for sync/async inconsistencies
5353
run: ./tools/async_to_sync.py --check $(find tests -name "*_async.py" -type f ! -path "tests/pq/test_async.py" ! -path "tests/test_concurrency_async.py")

0 commit comments

Comments
 (0)