Skip to content

Fix class BoundedAttributes to have RLock rather than Lock #6512

Fix class BoundedAttributes to have RLock rather than Lock

Fix class BoundedAttributes to have RLock rather than Lock #6512

name: Public API check
on:
pull_request:
types: [opened, synchronize, reopened, labeled, unlabeled]
branches:
- main
jobs:
publicAPICheck:
runs-on: ubuntu-latest
if: "!contains(github.event.pull_request.labels.*.name, 'Approve Public API check')"
steps:
- name: Checkout the repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Checkout main
run: git checkout main
- name: Pull origin
run: git pull --rebase=false origin main
- name: Checkout pull request
run: git checkout ${{ github.event.pull_request.head.sha }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install tox
run: pip install tox
- name: Public API Check
run: tox -e public-symbols-check