Skip to content

Bump the avaloniaui group across 1 directory with 3 updates #459

Bump the avaloniaui group across 1 directory with 3 updates

Bump the avaloniaui group across 1 directory with 3 updates #459

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 8.0.x
- name: Build
run: |
dotnet build --configuration Release
- name: Test
run: |
dotnet test --configuration Release
- name: Formatting
run: |
dotnet format --verify-no-changes