Skip to content

[enhance] New Function Gemma integration #10944

[enhance] New Function Gemma integration

[enhance] New Function Gemma integration #10944

Workflow file for this run

name: Pre Commit Check
on:
push:
branches: [ "master", "qa" ]
paths-ignore:
- "docs/reference/**"
- "docs/**/*.rst"
- "LICENSE"
pull_request:
branches: [ "master", "qa" ]
paths-ignore:
- "docs/reference/**"
- "docs/**/*.rst"
- "LICENSE"
permissions:
contents: read
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
with:
egress-policy: audit
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Set up Python environment and install dependencies
uses: ./.github/actions/camel_install
with:
python-version: "3.10"
- name: Run pre-commit
run: |
source .venv/bin/activate
pre-commit run --all-files
shell: bash