Files
test-web/.gitea/workflows/build.yml
Chris Dill 018d8e184e
All checks were successful
Build / build (push) Successful in 57s
Initial commit
2025-11-08 20:25:47 +00:00

27 lines
486 B
YAML
Executable File

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
env:
DOTNET_NOLOGO: true
DOTNET_CLI_TELEMETRY_OPTOUT: true
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Install dotnet
uses: actions/setup-dotnet@v5
with:
dotnet-version: 9.0.x
- name: Build project
run: dotnet test test-aspnetcore -c Release