Skip to content

Commit

Permalink
Added workflow config file for grade-management-new
Browse files Browse the repository at this point in the history
  • Loading branch information
mackmarton committed Oct 24, 2024
1 parent a25d696 commit e88649c
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/grade-management-new-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Grade Management New - build

on:
push:
paths:
- "grade-management-new/**"

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 1

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

- name: "Run dotnet build"
working-directory: grade-management
run: |
dotnet build
dotnet test

0 comments on commit e88649c

Please sign in to comment.