Fix setter decorator for project property (#8362) #20
Workflow file for this run
This file contains hidden or 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: Documentation Style | |
| on: | |
| push: | |
| paths: | |
| - ".github/workflows/docs-style.yml" | |
| - "docs/brand.css" | |
| - "docs/docs.css" | |
| - "api-docs/cppdocs/binaryninja-docs.css" | |
| - "api-docs/source/_static/css/other.css" | |
| - "rust/rustdoc-brand.css" | |
| - "scripts/gen_admonitions.py" | |
| - "scripts/support-icons/**" | |
| pull_request: | |
| paths: | |
| - ".github/workflows/docs-style.yml" | |
| - "docs/brand.css" | |
| - "docs/docs.css" | |
| - "api-docs/cppdocs/binaryninja-docs.css" | |
| - "api-docs/source/_static/css/other.css" | |
| - "rust/rustdoc-brand.css" | |
| - "scripts/gen_admonitions.py" | |
| - "scripts/support-icons/**" | |
| jobs: | |
| generated-css: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Check generated admonition CSS | |
| run: python3 scripts/gen_admonitions.py --check |