Skip to content

Updated the SharpExt4 dlls. #30

Updated the SharpExt4 dlls.

Updated the SharpExt4 dlls. #30

name: Build Verification
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
env:
Configuration: Release
ProjectPath: SharpExt4Explorer.sln
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.x' # or '8.0.x' as needed
- name: Restore dependencies
run: dotnet restore $env:ProjectPath
- name: Build solution
run: dotnet build $env:ProjectPath --configuration $env:Configuration --no-restore
- name: Run tests
run: dotnet test $env:ProjectPath --configuration $env:Configuration --no-build --verbosity normal