- fixed missing Launch button when viewing app details after installi… #178
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: .NET | |
on: | |
push: | |
branches: [ 'master', 'development' ] | |
defaults: | |
run: | |
working-directory: Spixi | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Spixi | |
uses: actions/checkout@v2 | |
with: | |
path: Spixi | |
- name: Checkout Ixian-Core | |
uses: actions/checkout@v2 | |
with: | |
repository: ProjectIxian/Ixian-Core | |
path: Ixian-Core | |
ref: ${{ github.event.push.ref }} | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '8.0.x' | |
- name: Install MAUI workload | |
run: dotnet workload install maui | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Building Spixi | |
run: dotnet build Spixi/Spixi.csproj -f net8.0-windows10.0.19041.0 -p:Platform=x64 -v:n | |
#- name: Running Unit Tests | |
# run: dotnet test UnitTests\bin\Debug\unittests.dll --verbosity normal |