chore(deps): bump rich from 14.3.1 to 15.0.0 in /otdf-local #2382
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: Lint and similar things for test | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| scriptcheck: | |
| permissions: | |
| contents: read | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| persist-credentials: false | |
| - name: 🦪 ✔ 🧼🧼🧼 | |
| run: >- | |
| docker run --rm -v "$PWD:/mnt" --workdir "/mnt" "koalaman/shellcheck:v0.8.0" --color=always \ | |
| $(find . -type f -exec grep -m1 -l -E '^#!.*sh.*' {} \; | grep -v '/.git/') | |
| - name: Check shell script formatting with shfmt | |
| run: docker run --rm -v "$PWD:/mnt" --workdir "/mnt" mvdan/shfmt:v3 -d . | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0 | |
| with: | |
| enable-cache: false | |
| - name: Install dependencies | |
| run: uv sync --extra dev | |
| working-directory: xtest | |
| - name: Lint xtest python | |
| run: | | |
| uv run ruff check . | |
| uv run ruff format --check . | |
| uv run pyright | |
| working-directory: xtest | |
| - name: Lint and test otdf-local | |
| run: | | |
| uv sync | |
| uv run ruff check . | |
| uv run ruff format --check . | |
| uv run pyright | |
| uv run pytest --maxfail=1 --disable-warnings -v --tb=short -m "not integration" | |
| working-directory: otdf-local | |
| - name: Lint and test otdf-sdk-mgr | |
| run: | | |
| uv sync | |
| uv run ruff check . | |
| uv run ruff format --check . | |
| uv run pyright | |
| uv run pytest --maxfail=1 --disable-warnings -v --tb=short -m "not integration" | |
| working-directory: otdf-sdk-mgr |