Skip to content

Bump PublicApiGenerator from 11.2.0 to 11.3.0 (#38) #56

Bump PublicApiGenerator from 11.2.0 to 11.3.0 (#38)

Bump PublicApiGenerator from 11.2.0 to 11.3.0 (#38) #56

Workflow file for this run

name: run
permissions: read-all
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest, macos-14]
configuration: [Release]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
global-json-file: global.json
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c ${{ matrix.configuration }} --no-restore
- name: Run
run: dotnet run -c ${{ matrix.configuration }} --no-restore --project src/Llm/Llm.csproj