Skip to content

Commit

Permalink
actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Kxnrl authored Nov 16, 2024
1 parent 455e533 commit 6b6ac90
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/dotnet-desktop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Action

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

jobs:

build:

strategy:
matrix:
configuration: [Release]

runs-on: windows-latest

steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1

- name: Install .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0.x

- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v2

- name: Restore the application
run: dotnet restore

- name: Build
run: dotnet build --no-restore

0 comments on commit 6b6ac90

Please sign in to comment.