Skip to content

Commit

Permalink
Fix Pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
PABERTHIER committed Feb 3, 2024
1 parent 9b94ea9 commit 5538c42
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
branches:
- '*'

env:
PROJECT_NAME: ReleaseManager/ReleaseManager.sln

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -32,13 +35,13 @@ jobs:
run: dotnet --info

- name: Restore dependencies
run: dotnet restore
run: dotnet restore $PROJECT_NAME

- name: Build
run: dotnet build --no-restore
run: dotnet build $PROJECT_NAME --no-restore

- name: Test
run: dotnet test --no-build --verbosity normal
run: dotnet test $PROJECT_NAME --no-build --verbosity normal



0 comments on commit 5538c42

Please sign in to comment.