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 7539e65 commit 8a53387Copy full SHA for 8a53387
.github/workflows/ci.yml
@@ -10,21 +10,15 @@ jobs:
10
test:
11
runs-on: ubuntu-latest
12
13
- services:
14
- mongodb-test:
15
- image: mongo:latest
16
- ports:
17
- - 27017:27017
18
- options: >-
19
- --health-cmd "mongosh --eval 'db.runCommand({ ping: 1 })'"
20
- --health-interval 10s
21
- --health-timeout 5s
22
- --health-retries 5
23
-
24
steps:
25
- name: Checkout code
26
uses: actions/checkout@v4
27
+ - name: Set up Docker Buildx
+ uses: docker/setup-buildx-action@v3
+ with:
+ install: true
+
28
- name: Set up Python
29
uses: actions/setup-python@v5
30
with:
@@ -43,6 +37,8 @@ jobs:
43
37
run: make generate
44
38
45
39
- name: Run tests
40
+ env:
41
+ PYTHONPATH: ./src
46
42
run: make test
47
48
- name: Cleanup
0 commit comments