ci: 💚 Fix file structure
All checks were successful
Tests / Unit Testing1 (push) Successful in 1m1s

This commit is contained in:
2023-11-02 16:29:02 +01:00
parent 6e27660234
commit a42e51b609
8 changed files with 127 additions and 2 deletions

View File

@ -0,0 +1,20 @@
name: Tests
on: push
jobs:
tests:
name: Unit Testing1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
# The repo is on a custom server https://gitea.louisgallet.fr/EPITA-TP-PROG/RiderAndUnitTest.git
repository: "EPITA-TP-PROG/B2B-Training"
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
- name: "🏗️ Build"
run: dotnet build
- name: "✅ Test"
run: dotnet test