Skip to content

Create build-windows-forms-app.yml #1

Create build-windows-forms-app.yml

Create build-windows-forms-app.yml #1

name: Build Windows Forms App
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: '6.0.x' # Upewnij się, że używasz odpowiedniej wersji .NET
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release