Skip to content

use Node 20 for action #53

use Node 20 for action

use Node 20 for action #53

Workflow file for this run

name: MsccGenerativeAI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest]
dotnet-version: ['8.x']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Build
run: |
dotnet build ./GenerativeAI.sln -c Release
# - name: Test Mscc.GenerativeAI
# run: |
# dotnet test ./tests/Mscc.GenerativeAI/Test.Mscc.GenerativeAI.csproj -c Release --logger "console;verbosity=detailed"
# - name: Test Mscc.GenerativeAI.Google
# run: |
# dotnet test ./tests/Mscc.GenerativeAI.Google/Test.Mscc.GenerativeAI.Google.csproj -c Release --logger "console;verbosity=detailed"