Skip to content

feat: allow negative controlled global phase gate #808

feat: allow negative controlled global phase gate

feat: allow negative controlled global phase gate #808

name: Dependent tests
on:
pull_request:
branches: [ main, feature/** ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11"]
dependent:
- amazon-braket-sdk-python
- amazon-braket-pennylane-plugin-python
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
# install schemas from github to get the latest changes
- name: Install dependencies
run: |
pip install --upgrade pip
pip install --upgrade git+https://github.com/aws/amazon-braket-schemas-python@main
pip install -e .
cd ..
git clone https://github.com/aws/${{ matrix.dependent }}.git
cd ${{ matrix.dependent }}
# Update the amazon-braket-default-simulator dependency to reference the current commit
python ${GITHUB_WORKSPACE}/.github/scripts/update_dependency.py
pip install -e .[test]
- name: Run unit tests
run: |
cd ../${{ matrix.dependent }}
pytest