Skip to content

Commit

Permalink
Add build backend workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamMorrow committed Dec 30, 2023
1 parent 0fc6f24 commit 6915a42
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/backend-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build Backend

on:
push:
branches-ignore: [main]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Build
run: dotnet build
working-directory: ./LiftLog.Backend

0 comments on commit 6915a42

Please sign in to comment.