Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
w8tcha committed Mar 7, 2024
1 parent dfd0bd5 commit cd5942e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: YAF.NET v4 (.NET v8)
on:
push:
branches:
- master

jobs:
build:

runs-on: windows-latest
strategy:
matrix:
dotnet-version: [ '8.0.x' ]

steps:
- uses: actions/checkout@v3
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
working-directory: ./
run: dotnet restore ./YAF.SampleApp.sln
- name: Build
working-directory: ./
run: dotnet build ./YAF.SampleApp.sln

0 comments on commit cd5942e

Please sign in to comment.