closes #7249: for stairs, change the first/last tread lengths to less… #1
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: ci-black-formatting | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| lint-formatting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Action - checkout repository | |
| uses: actions/checkout@v4.2.2 | |
| - name: Action - install python | |
| uses: actions/setup-python@v5.3.0 | |
| with: | |
| python-version: "3.9" | |
| - name: Action - install python | |
| uses: actions/setup-python@v5.3.0 | |
| with: | |
| python-version: "3.11" | |
| - name: Install dependencies | |
| run: | | |
| curl -LsSf https://astral.sh/uv/install.sh | sh | |
| uv tool install ruff | |
| uv tool install black | |
| # black doesn't catch all syntax errors, so we check them explicitly. | |
| - name: Check syntax errors | |
| id: syntax-errors | |
| run: | | |
| ERROR=0 | |
| python3.9 -W error -m compileall -q src/ifcopenshell-python || ERROR=1 | |
| python3.11 -W error -m compileall -q src/bonsai || ERROR=1 | |
| exit $ERROR | |
| continue-on-error: true | |
| - name: Black formatter | |
| id: black | |
| run: | | |
| uvx black --diff --check . | |
| continue-on-error: true | |
| - name: Ruff check | |
| id: ruff | |
| run: | | |
| uvx ruff check | |
| # It's actually Python 3.6, but ruff only supports 3.7+, but it should do. | |
| uvx ruff check nix/build-all.py --target-version py37 | |
| continue-on-error: true | |
| - name: Final check | |
| run: | | |
| ERROR=0 | |
| if [ "${{ steps.syntax-errors.outcome }}" != "success" ]; then | |
| echo "::error::Syntax errors check failed, see 'syntax-errors' step for the details." && ERROR=1 | |
| fi | |
| if [ "${{ steps.black.outcome }}" != "success" ]; then | |
| echo "::error::Black formatting check failed, see 'black' step for the details." && ERROR=1 | |
| fi | |
| if [ "${{ steps.ruff.outcome }}" != "success" ]; then | |
| echo "::error::Ruff check failed, see 'ruff' step for the details." && ERROR=1 | |
| fi | |
| exit $ERROR |