Skip to content

Source generation support #692

Source generation support

Source generation support #692

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
paths-ignore:
- 'doc/**'
- 'readme.md'
pull_request:
branches: [ main ]
paths-ignore:
- 'doc/**'
- 'readme.md'
jobs:
build:
runs-on: ubuntu-latest
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
steps:
- uses: actions/checkout@v6
- uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.0.x
10.0.x
global-json-file: global.json
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test --configuration Release --no-build