Skip to content

chore(deps): bump Avalonia.Xaml.Interactions from 11.1.0.2 to 11.1.0.4 in the avalonia group #122

chore(deps): bump Avalonia.Xaml.Interactions from 11.1.0.2 to 11.1.0.4 in the avalonia group

chore(deps): bump Avalonia.Xaml.Interactions from 11.1.0.2 to 11.1.0.4 in the avalonia group #122

Workflow file for this run

name: CI Builds
on:
pull_request:
jobs:
release:
name: CI Build
strategy:
matrix:
kind: ['linux', 'windows', 'macOS']
include:
- kind: linux
os: ubuntu-latest
target: linux-x64
- kind: windows
os: windows-latest
target: win-x64
- kind: macOS
os: macos-latest
target: osx-x64
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4.0.1
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build
- name: Publish
run: dotnet publish SharpFM.csproj --runtime "${{ matrix.target }}" -c Debug