Skip to content

Feat/improved prompt handling #101

Feat/improved prompt handling

Feat/improved prompt handling #101

Workflow file for this run

# Builds the project, runs tests and creates NuGet packages.
# Triggers on pushes to main and version tags, and pull requests targeting main.
name: .NET
on:
push:
branches:
- main
tags:
- '[0-9]+.[0-9]+.[0-9]+'
- '[0-9]+.[0-9]+.[0-9]+-*'
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Setup .NET 10
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
- name: Run build script
run: bash ./build.sh
- name: Upload NuGet packages
uses: actions/upload-artifact@v4
with:
name: nuget-packages
path: nuget/
if-no-files-found: error