Skip to content

Add ability to choose LLM prompt template for value generation and flow generation #33

Add ability to choose LLM prompt template for value generation and flow generation

Add ability to choose LLM prompt template for value generation and flow generation #33

Workflow file for this run

name: Full Tests
on:
pull_request:
types: [review_requested, ready_for_review]
paths-ignore:
- "**/*.md"
- ".github/**"
push:
tags:
- "v*"
workflow_dispatch:
jobs:
call-tests:
strategy:
matrix:
os: [Windows, macOS] # exclude Ubuntu as it is available in pr-tests
python-version: ["3.9", "3.10", "3.11"]
include:
- os: Ubuntu
image: ubuntu-latest
- os: Windows
image: windows-2022
- os: macOS
image: macos-14
fail-fast: false
uses: ./.github/workflows/_test.yml
with:
os: ${{ matrix.os }}
image: ${{ matrix.image }}
python-version: ${{ matrix.python-version }}