hide inherited members if the base class is not part of the documenta… #794
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: autofix.ci | |
on: | |
pull_request: | |
push: | |
branches: [ "main", "ci" ] | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
autofix: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: mhils/workflows/checkout@v11 | |
- uses: mhils/workflows/setup-python@v11 | |
- uses: mhils/workflows/setup-uv@v11 | |
- run: uv run ruff check --fix-only . | |
- run: uv run ruff format . | |
- run: uv run test/test_snapshot.py | |
- uses: mhils/add-pr-ref-in-changelog@v1 | |
- uses: autofix-ci/action@dd55f44df8f7cdb7a6bf74c78677eb8acd40cd0a |