Skip to content

Merge pull request #119 from ChrispyPeaches/hotfix-remove-keystore-an… #806

Merge pull request #119 from ChrispyPeaches/hotfix-remove-keystore-an…

Merge pull request #119 from ChrispyPeaches/hotfix-remove-keystore-an… #806

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Build FocusApp.Client
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Install .NET Maui
run: dotnet workload install maui
- name: Restore dependencies
run: dotnet restore src/FocusApp.Client/FocusApp.Client.csproj
- name: Build
run: dotnet build src/FocusApp.Client/FocusApp.Client.csproj --configuration Release --framework:net8.0-android --no-restore
# - name: Test
# run: dotnet test --no-build --verbosity normal