Skip to content

Commit ec5f2c1

Browse files
committed
Add GitHub actions: windows unit tests
1 parent ed1494a commit ec5f2c1

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/.github/CODEOWNERS @neo4j/drivers
2+
/.github/workflows/ @neo4j/drivers

.github/workflows/tests.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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

0 commit comments

Comments
 (0)