Skip to content

fix: DIA-986: Upgrade OpenAI client version & pytest coverage #42

fix: DIA-986: Upgrade OpenAI client version & pytest coverage

fix: DIA-986: Upgrade OpenAI client version & pytest coverage #42

Workflow file for this run

name: "CI/CD Pipeline"
on:
push:
branches:
- master
pull_request_target:
types:
- opened
- synchronize
- reopened
- ready_for_review
branches:
- master
concurrency:
group: CI/CD Pipeline-${{ github.event.pull_request.number || github.event.pull_request.head.ref || github.ref_name }}
cancel-in-progress: true
jobs:
build:
name: "Build"
uses: ./.github/workflows/docker-build.yml
permissions:
contents: read
checks: write
with:
sha: ${{ github.event.pull_request.head.sha || github.event.after }}
branch_name: ${{ github.event.pull_request.head.ref || github.ref_name }}
secrets: inherit
deploy:
name: "Deploy"
if: github.event_name == 'pull_request_target'
uses: ./.github/workflows/argocd-create-app.yml
needs:
- build
with:
docker_image_version: ${{ needs.build.outputs.image_version }}
branch_name: ${{ github.event.pull_request.head.ref || github.ref_name }}
secrets: inherit