try removing uv run prefix from CI commands #32
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: CI / Python | ||
|
Check failure on line 1 in .github/workflows/ci-python.yml
|
||
| permissions: | ||
| contents: read | ||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| pull_request: | ||
| jobs: | ||
| lint: | ||
| name: Lint | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7.1.2 | ||
| - name: Install dependencies | ||
| - run: uv sync --all-packages --all-groups | ||
| - name: Format | ||
| run: ruff format | ||
| - name: Lint | ||
| run: ruff check | ||
| - name: Run mypy | ||
| run: mypy . | ||
| test: | ||
| name: Test | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7.1.2 | ||
| - name: Install dependencies | ||
| - run: uv sync --all-packages --all-groups | ||
| - name: Run tests | ||
| run: uv run pytest python-objectstore-client | ||