Skip to content

ci: fix Docker image workflow with tag pushing #1115

ci: fix Docker image workflow with tag pushing

ci: fix Docker image workflow with tag pushing #1115

Workflow file for this run

name: Lint Python Code
permissions:
contents: read
on:
push:
branches: [main]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install the latest version of uv and set the python version
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
cache-dependency-glob: "**/pyproject.toml"
python-version: "3.11"
- name: Install dependencies
run: make install
- name: Run linting
run: make lint