Skip to content

Commit 2a07b35

Browse files
committed
Run the tests
1 parent 4e8e10e commit 2a07b35

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,3 +200,16 @@ jobs:
200200
- name: Move compiled files to betterproto2
201201
shell: bash
202202
run: cp -r betterproto2_compiler/tests/outputs betterproto2/tests
203+
204+
- name: Create test script
205+
shell: bash
206+
working-directory: ./betterproto2
207+
run: |
208+
echo '#!/bin/bash' > script.sh
209+
echo 'python -m tests.conformance.main' >> script.sh
210+
chmod +x script.sh
211+
212+
- name: Run conformance tests
213+
working-directory: ./betterproto2
214+
run: |
215+
uv run conformance_test_runner ./script.sh

0 commit comments

Comments
 (0)