Skip to content

feature/multi-target-build #291

feature/multi-target-build

feature/multi-target-build #291

Workflow file for this run

name: .NET
on:
push:
branches:
- 'main'
- 'release'
pull_request:
branches:
- '**'
env:
USE_FULL_NUMERIC_PROVIDER: "true"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal