Skip to content

chore: convert all class libs to Maui class libs #9

chore: convert all class libs to Maui class libs

chore: convert all class libs to Maui class libs #9

Workflow file for this run

# 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: Ensure .NET Project Builds
on:
push:
branches: [ "dev", "main" ]
pull_request:
branches: [ "dev", "main" ]
env:
DOTNET_CORE_VERSION: 8.0.x
WORKING_DIRECTORY: ./src/
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_CORE_VERSION }}
- name: Restore dependencies
run: dotnet restore "${{ env.WORKING_DIRECTORY }}"
- name: Build
run: dotnet build "${{ env.WORKING_DIRECTORY }}" --no-restore
- name: Test
run: dotnet test "${{ env.WORKING_DIRECTORY }}" --no-build --verbosity normal