Skip to content

Commit

Permalink
Create dotnet-6-winforms.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
FongYuanChen authored Nov 26, 2024
1 parent 8b719a1 commit a4570af
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/dotnet-6-winforms.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: .NET 6 WinForms

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup .NET 6
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore

0 comments on commit a4570af

Please sign in to comment.