File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change 7979 - name : Run pytest
8080 run : uv run pytest -vvv
8181
82+ run_rust_tests :
83+ name : Run tests (Rust)
84+ needs : [check_pre_commit]
85+ runs-on : ${{ matrix.os }}
86+ strategy :
87+ matrix :
88+ os :
89+ - ubuntu-latest
90+ - macos-latest
91+ steps :
92+ - name : Checkout source code
93+ uses : actions/checkout@v4
94+
95+ - name : Run cargo test
96+ run : cargo test
97+
8298 build_linux_wheels :
8399 name : Build wheels (linux)
84100 if : github.event_name == 'push' || github.event_name == 'workflow_dispatch' || contains(github.event.*.labels.*.name, 'dependencies')
@@ -392,6 +408,7 @@ jobs:
392408 if : ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }}
393409 needs :
394410 - run_python_tests
411+ - run_rust_tests
395412 - build_linux_wheels
396413 - build_macos_wheels
397414 - build_sdist
You can’t perform that action at this time.
0 commit comments