build.yml

This commit is contained in:
Muj 2023-07-30 16:29:21 +01:00 committed by GitHub
parent f2611313cf
commit bbf03bec17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 34 additions and 0 deletions

34
.github/workflows/dotnet-desktop.yml vendored Normal file
View File

@ -0,0 +1,34 @@
name: build
on:
push:
pull_request:
branches: [ muj_feature ]
paths:
- '**.cs'
- '**.csproj'
env:
DOTNET_VERSION: '6.0.401'
jobs:
build:
name: build-${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore