Skip to content

Merge pull request #7 from cmcxn/copilot/fix-3db97df7-6552-42af-8e34-… #13

Merge pull request #7 from cmcxn/copilot/fix-3db97df7-6552-42af-8e34-…

Merge pull request #7 from cmcxn/copilot/fix-3db97df7-6552-42af-8e34-… #13

Workflow file for this run

name: Build and Test
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Restore dependencies
run: dotnet restore AutoDeployTool.csproj
- name: Build application
run: dotnet build AutoDeployTool.csproj --configuration Release --no-restore
- name: Run tests (if any)
run: dotnet test AutoDeployTool.csproj --configuration Release --no-build --verbosity normal || echo "No tests found, skipping test execution"
continue-on-error: true