Skip to content

Commit

Permalink
chore: add github actions for buid
Browse files Browse the repository at this point in the history
  • Loading branch information
mika-f committed Jan 16, 2024
1 parent 936a3f4 commit 6c44105
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/dotnet-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build with .NET

on:
push:
pull_request:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Setup .NET tools
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"

- name: Restore NuGet dependencies
run: |
dotnet restore ./src/Plana.sln
- name: Build
run: |
dotnet build ./src/Plana.sln --no-restore --configuration=Release

0 comments on commit 6c44105

Please sign in to comment.