Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
MarouaneDV committed Sep 14, 2024
0 parents commit 205708f
Show file tree
Hide file tree
Showing 74 changed files with 5,800 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/dotnet-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: .MaruanBH CI Pipeline

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.x'

- name: Clean dotnet
run: dotnet clean MaruanBH.sln

- name: Restore dotnet dependencies
run: dotnet restore MaruanBH.sln

- name: Build dotnet
run: dotnet build MaruanBH.sln --configuration Release --no-restore

- name: Test with dotnet
run: dotnet test MaruanBH.Tests/MaruanBH.Tests.csproj --verbosity normal
Loading

0 comments on commit 205708f

Please sign in to comment.