Skip to content

Add Avalonia compability + tweaks #74

Add Avalonia compability + tweaks

Add Avalonia compability + tweaks #74

Workflow file for this run

name: pull-request
on:
pull_request:
branches: [ master ]
jobs:
build:
name: pull-request
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
# In a pull request we must make sure both the angular/dotnet library build.
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.100
# Authenticates packages to push to GPR
source-url: https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json
env:
NUGET_AUTH_TOKEN: '%NUGET_AUTH_TOKEN%'
- name: Install dependencies
run: dotnet restore
env:
NUGET_AUTH_TOKEN: ${{ github.token }}
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal