Files
Module.EventRegistration/.gitea/workflows/ci.yml
Konstantin Hintermayer bd038ab691
Some checks failed
/ build (push) Failing after 47s
CI: Setup dotnet SDK before running automatic build
2025-05-14 22:19:03 +02:00

38 lines
909 B
YAML

on:
push:
branches:
- main
- ci
pull_request:
branches:
- main
- ci
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout Module
uses: https://github.com/actions/checkout@v4
with:
path: Module.EventRegistration
- name: Checkout Oqtane
uses: https://github.com/actions/checkout@v4
with:
repository: Diplomarbeit-Absolventenverein/oqtane.framework
path: oqtane.framework
- name: PWD
run: pwd
- name: LS
run: ls -lisa
- name: change into building directory
run: cd Module.EventRegistration
- name: Setup Dotnet SDK
uses: https://github.com/actions/setup-dotnet@v4
with:
dotnet-version: '9.x'
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test --configuration Release --no-build