Skip to content

ci: scope down GitHub Token permissions #1068

ci: scope down GitHub Token permissions

ci: scope down GitHub Token permissions #1068

Workflow file for this run

name: Dependent tests
on:
pull_request:
branches: [ main, feature/** ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13"]
dependent:
- amazon-braket-sdk-python
- amazon-braket-pennylane-plugin-python
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
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