Skip to content

Commit

Permalink
deployment file
Browse files Browse the repository at this point in the history
  • Loading branch information
kreve-github committed Jun 26, 2024
1 parent 053d051 commit b0298f0
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions build-validation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: build

on:
push:
pull_request:
branches: [ main ]
paths:
- '**.cs'
- '**.csproj'

env:
DOTNET_VERSION: '6.0.401' # The .NET SDK version to use

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

0 comments on commit b0298f0

Please sign in to comment.