infra: bump aws-actions/stale-issue-cleanup from 3 to 6 #308
Workflow file for this run
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: 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-default-simulator-python | |
- amazon-braket-sdk-python | |
- amazon-braket-pennylane-plugin-python | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip | |
pip install -e . | |
cd .. | |
git clone https://github.com/aws/${{ matrix.dependent }}.git | |
cd ${{ matrix.dependent }} | |
# Update the amazon-braket-schemas 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 |