Skip to content

Merge pull request #212 from AvaloniaCommunity/fix-some-issues #23

Merge pull request #212 from AvaloniaCommunity/fix-some-issues

Merge pull request #212 from AvaloniaCommunity/fix-some-issues #23

Workflow file for this run

name: .NET Build
on:
push:
branches-ignore:
- 'master'
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET 8.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Setup .NET 9.0
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x
- name: Restore dependencies
run: dotnet restore MessageBox.Avalonia.sln
- name: Build
run: dotnet build MessageBox.Avalonia.sln --no-restore --configuration Release
- name: Test
run: dotnet test MessageBox.Avalonia.sln --no-build --configuration Release --verbosity normal