Skip to content

try removing uv run prefix from CI commands #32

try removing uv run prefix from CI commands

try removing uv run prefix from CI commands #32

Workflow file for this run

name: CI / Python

Check failure on line 1 in .github/workflows/ci-python.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci-python.yml

Invalid workflow file

(Line: 22, Col: 9): There's not enough info to determine what you meant. Add one of these properties: run, shell, uses, with, working-directory, (Line: 43, Col: 9): There's not enough info to determine what you meant. Add one of these properties: run, shell, uses, with, working-directory
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