Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 17 additions & 4 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# Copyright 2026 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

name: Python CI

on:
Expand All @@ -7,15 +21,14 @@
branches: [ main ]

jobs:
build:

Check warning on line 24 in .github/workflows/python-ci.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

python-ci.yml:24: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

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

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

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

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

python-ci.yml:27: unpinned action reference: action is not pinned to a hash (required by blanket policy)
- name: Install uv
uses: astral-sh/setup-uv@v5

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

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

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

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

python-ci.yml:29: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
enable-cache: true
cache-dependency-glob: "agent/python_agent/uv.lock"
enable-cache: auto

- name: Set up Python
run: uv python install
Expand All @@ -25,11 +38,11 @@
working-directory: agent/python_agent

- name: Type check with pyright
run: uv run --frozen pyright
run: uv run pyright
working-directory: agent/python_agent
continue-on-error: true

- name: Lint with ruff
run: uv run --frozen ruff check .
run: uv run ruff check .
working-directory: agent/python_agent
continue-on-error: true
4 changes: 1 addition & 3 deletions .github/workflows/web-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,9 @@ jobs:
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
with:
node-version: '22'
cache: 'npm'
cache-dependency-path: client/web/package-lock.json

- name: Install dependencies
run: npm ci
run: npm install
working-directory: client/web

- name: Type check
Expand Down
9 changes: 0 additions & 9 deletions CHANGELOG.md

This file was deleted.

Loading
Loading