File tree Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Original file line number Diff line number Diff line change 1+ /.github /CODEOWNERS @ neo4j/drivers
2+ /.github /workflows / @ neo4j/drivers
Original file line number Diff line number Diff line change 1+ name : Tests
2+ on :
3+ push :
4+ branches :
5+ - 6.x
6+ pull_request :
7+ branches :
8+ - 6.x
9+
10+ jobs :
11+ win-unit-tests :
12+ name : Windows Unit Tests
13+ runs-on : windows-latest
14+ strategy :
15+ matrix :
16+ python-version :
17+ - ' 3.10'
18+ - ' 3.11'
19+ - ' 3.12'
20+ - ' 3.13'
21+ steps :
22+ - uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
23+
24+ - name : Set up Python ${{ matrix.python-version }}
25+ uses : actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
26+ with :
27+ python-version : ${{ matrix.python-version }}
28+ cache : ' pip'
29+
30+ - name : Run unit tests
31+ run : python testkit/unittests.py
32+
33+ gha-conclusion :
34+ name : GHA Conclusion
35+ runs-on : ubuntu-latest
36+ needs : win-unit-tests
You can’t perform that action at this time.
0 commit comments