Konstantin Hintermayer d967449889
Some checks failed
/ build (push) Failing after 48s
CI: Add CI branch as trigger for testing
2025-05-14 21:50:56 +02:00

21 lines
386 B
YAML

on:
push:
branches:
- main
- ci
pull_request:
branches:
- main
- ci
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