-
Notifications
You must be signed in to change notification settings - Fork 7
36 lines (31 loc) · 1.1 KB
/
hqs-ci-test-rust-python.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: HQS CI tests for pure rust and pure python repos
on:
workflow_dispatch:
pull_request:
branches: ["main"]
jobs:
linting_rust:
uses: HQSquantumsimulations/reusable_workflows/.github/workflows/reusable_linting_rust_pyo3.yml@main
linting_python:
uses: HQSquantumsimulations/reusable_workflows/.github/workflows/reusable_linting_pure_python.yml@main
with:
python_folder: "qoqo_mock"
linting_folder: "qoqo_mock"
unittests_rust:
uses: HQSquantumsimulations/reusable_workflows/.github/workflows/reusable_unittests_rust_pyo3.yml@main
with:
# Run tests also on windows runners
windows: true
# Run tests also on macos runners
macos: true
rust_package_name: "roqoqo-mock"
test_code_coverage: false
unittests_python:
uses: HQSquantumsimulations/reusable_workflows/.github/workflows/reusable_tests_pure_python.yml@main
with:
python_folder: "qoqo_mock"
test_code_coverage: false
# Run tests also on windows runners
windows: true
# Not run tests on macos runners because of a cc linking error
macos: false