Add CI scripts to build the module automatically

This commit is contained in:
Konstantin Hintermayer
2025-05-14 21:07:34 +02:00
parent 38c5bef225
commit 02a845c711
2 changed files with 52 additions and 0 deletions

19
.gitea/workflows/ci.yml Normal file
View File

@ -0,0 +1,19 @@
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: https://github.com/actions/checkout@v4
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test --configuration Release --no-build