Ajout CI Coverage #9

Merged
mcmuzzle merged 39 commits from CIQuality into main 2024-08-29 17:43:05 +00:00
Showing only changes of commit 966a82c4fc - Show all commits

View File

@@ -0,0 +1,36 @@
name: "Main Build Process"
# Runs on main branch commits,
# every commit in a pull request, any published release.
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
release:
types: [published]
env:
REGISTRY: gitea.borealian.ovh
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
name: "Build & Test"
# Permissions this GitHub Action needs for other things in GitHub
permissions: write-all
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
8.x
- name: "Restore/Build/Test"
run: dotnet test --configuration Release --verbosity normal --logger trx --collect:"XPlat Code Coverage"