We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f16ed0 commit f800f2cCopy full SHA for f800f2c
.github/workflows/ci.yml
@@ -71,3 +71,26 @@ jobs:
71
- name: Run Swift tests
72
working-directory: swift-gui
73
run: xcodebuild test -project ARMEmulator.xcodeproj -scheme ARMEmulator -destination 'platform=macOS' | xcbeautify
74
+
75
+ avalonia-gui:
76
+ runs-on: ubuntu-latest
77
78
+ steps:
79
+ - uses: actions/checkout@v4
80
81
+ - name: Set up .NET
82
+ uses: actions/setup-dotnet@v4
83
+ with:
84
+ dotnet-version: '10.0.x'
85
86
+ - name: Restore dependencies
87
+ working-directory: avalonia-gui
88
+ run: dotnet restore
89
90
+ - name: Build Avalonia app
91
92
+ run: dotnet build --no-restore
93
94
+ - name: Run Avalonia tests
95
96
+ run: dotnet test --no-build --verbosity normal
0 commit comments