Files
Test-Runner/.gitea/workflows/dotnet-test.yml
thecoderatekid 945b9a24ab
Some checks failed
CI Demo / build (push) Successful in 3s
Docker Test / docker-ops (push) Successful in 4s
Go Test / go-test (push) Has been cancelled
.NET Test / dotnet-test (push) Has been cancelled
Java Test / java-hello (push) Has been cancelled
Kotlin Test / kotlin-hello (push) Has been cancelled
Node.js Test / nodejs-test (push) Has been cancelled
PHP Test / php-test (push) Has been cancelled
Python Test / python-hello (push) Has been cancelled
Swift Test / swift-hello (push) Has been cancelled
Add .gitea/workflows/dotnet-test.yml
2025-08-07 18:56:01 +00:00

24 lines
481 B
YAML

name: .NET Test
on: [push]
jobs:
dotnet-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: '7.0.x'
- name: Restore packages
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Test
run: dotnet test --no-build --verbosity normal