Initial commit
All checks were successful
Build / build (push) Successful in 57s

This commit is contained in:
2025-11-08 14:26:53 +00:00
commit 018d8e184e
26 changed files with 1251 additions and 0 deletions

26
.gitea/workflows/build.yml Executable file
View File

@@ -0,0 +1,26 @@
name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Install dotnet
uses: actions/setup-dotnet@v5
with:
dotnet-version: 9.0.x
- name: Build project
run: dotnet test test-aspnetcore -c Release