Files
WorkManagementTool/.gitea/workflows/build.yml
Namu b4af83a7d7
Some checks failed
build / build (push) Failing after 39s
SonarQube Scan / SonarQube Trigger (push) Successful in 31s
Feat: Add build action
2025-12-20 22:04:49 +01:00

29 lines
465 B
YAML

name: build
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release