Skip to content

fake kxdb_tool change #4

fake kxdb_tool change

fake kxdb_tool change #4

Workflow file for this run

# Copyright 2025 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: Test kxdb_tool
on:
push:
paths:
- 'kxdb_tool/**'
pull_request:
permissions: {}
jobs:
changes:
runs-on: ubuntu-latest
permissions:
pull-requests: read
outputs:
kxdb_tool: ${{ steps.filter.outputs.kxdb_tool }}
steps:
- id: filter
uses: dorny/paths-filter@v3
with:
filters: "kxdb_tool: ['kxdb_tool/**']"
tests:
runs-on: ubuntu-latest
timeout-minutes: 20
needs: changes
if: ${{ needs.changes.outputs.kxdb_tool == 'true' }}
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install kxdb_tool prerequisites
working-directory: ./kxdb_tool
run: pip install -r requirements.txt
- name: Test kxdb_tool
working-directory: ./kxdb_tool
run: ./test.sh
- name: Send Google Chat Notification (on failure)
if: ${{ failure() }}
env:
WEBHOOK_URL: ${{ secrets.WEBHOOK_EXPKIT }}
run: node ./.github/scripts/send_notification.js