adding gitea
All checks were successful
ci / Build & Unit Test (push) Successful in 1m5s

This commit is contained in:
Andy Pack 2024-07-19 20:19:07 +01:00
parent 15c9f350d3
commit 18e4d8c7a8
Signed by: sarsoo
GPG Key ID: A55BA3536A5E0ED7

29
.gitea/workflows/ci.yml Normal file
View File

@ -0,0 +1,29 @@
name: ci
on: [push]
env:
dotnet-version: '8.0.x'
jobs:
build:
runs-on: ubuntu-latest
name: Build & Unit Test
steps:
- uses: actions/checkout@v4
with:
github-server-url: https://gitea.sheep-ghoul.ts.net
- name: Setup .NET Core SDK ${{ env.dotnet-version }}
uses: actions/setup-dotnet@v3.2.0
with:
dotnet-version: ${{ env.dotnet-version }}
- name: Install Dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal