Updated the SharpExt4 dlls. #30
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: 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 |