ajout d'un pipeline pour la branche main
All checks were successful
Main Build Process / Build & Test (pull_request) Successful in 1m9s
Merging on main / Build & Test (push) Successful in 1m0s

This commit was merged in pull request #35.
This commit is contained in:
2026-02-09 14:40:34 +01:00
parent f089f436a7
commit 5c208ea408

View File

@@ -0,0 +1,32 @@
name: "Merging on main"
on:
push:
branches: ["main"]
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@v6
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
10.x
- name: "Restore/Build/Test"
run: |
dotnet test ./src/LittleTown.sln --configuration Release --verbosity normal --logger trx --collect:"XPlat Code Coverage" --logger:"trx;LogFileName=test_results.xml"