Skip to content

Merge pull request #37 from neuroglia-io/feat-semantickernel-library #64

Merge pull request #37 from neuroglia-io/feat-semantickernel-library

Merge pull request #37 from neuroglia-io/feat-semantickernel-library #64

Workflow file for this run

name: Build and Test
on:
push:
branches: [ main ]
paths-ignore:
- '.github/**'
- '**/*.md'
- 'assets/**'
pull_request:
branches: [ main ]
paths-ignore:
- '.github/**'
- '**/*.md'
- 'assets/**'
workflow_call:
permissions:
contents: read
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
8.0.x
9.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build