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

33 lines
703 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: PWD
run: ls -lisa
- name: PWD
run: pwd
- name: PWD
run: cd /workspace/Diplomarbeit-Absolventenverein/Module.EventRegistration
- name: PWD
run: ls -lisa
- name: PWD
run: pwd
- name: Setup Dotnet SDK
uses: https://github.com/actions/setup-dotnet@v4
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test --configuration Release --no-build