Skip to content

feat: add ticket validation and insertion to cloudsql postgres (#437) #158

feat: add ticket validation and insertion to cloudsql postgres (#437)

feat: add ticket validation and insertion to cloudsql postgres (#437) #158

Workflow file for this run

# Copyright 2022 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: lint
on:
pull_request:
paths-ignore:
- "docs/**"
- "*.md"
push:
branches:
- main
- demo
paths-ignore:
- "docs/**"
# Declare default permissions as read only.
permissions: read-all
jobs:
integration:
name: ${{ matrix.dir }}
runs-on: ubuntu-latest
strategy:
matrix:
dir: [retrieval_service, llm_demo]
fail-fast: false
permissions:
contents: read
id-token: write
issues: write
pull-requests: write
steps:
- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup Python
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
with:
python-version: "3.11"
- name: Install requirements
working-directory: ${{ matrix.dir }}
run: pip install -r requirements.txt -r requirements-test.txt
- name: Run lints
working-directory: ${{ matrix.dir }}
run: |
black --check .
isort --check .
mypy .