Testing how secrets work #94
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: HQS CI tests for rust pyo3 repos | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: ["main"] | ||
jobs: | ||
linting: | ||
uses: HQSquantumsimulations/reusable_workflows/.github/workflows/reusable_linting_rust_pyo3.yml@main | ||
unittests: | ||
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-aqt" | ||
test_code_coverage: false | ||
env: | ||
AQT_ACCESS_TOKEN: ${{ secrets.AQT_ACCESS_TOKEN }} | ||
build_tests: | ||
uses: HQSquantumsimulations/reusable_workflows/.github/workflows/reusable_build_tests_rust_pyo3.yml@main | ||
with: | ||
# Run tests also on windows runners | ||
windows: true | ||
# Run tests also on macos runners | ||
macos: true | ||
py_interface_folder: "qoqo_aqt" | ||
has_python_tests: true |