Skip to content

Backend

Backend #75

Workflow file for this run

name: Backend
on:
push:
pull_request:
schedule:
- cron: '50 5 * * *'
jobs:
build:
name: 'Build'
runs-on: ubuntu-latest
steps:
# Checkout repository
- name: Checkout
uses: actions/checkout@v4
# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
# Build library
- name: Build
run: |
cd ./Backend/
dotnet build