Skip to content

Commit

Permalink
finished
Browse files Browse the repository at this point in the history
  • Loading branch information
AngeloSans committed Jul 8, 2024
1 parent f56bc3e commit 2453ed0
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,21 @@ jobs:
run: ls -la
- name: Display XPhone directory contents
run: ls -la XPhone
- name: Restore dependencies
run: dotnet restore dotnet restore ./XPhone/**/*.csproj
- name: Restore dependencies for XPhone.Api
run: dotnet restore ./XPhone/XPhone.Api/XPhone.Api.csproj

- name: Restore dependencies for XPhone.Application
run: dotnet restore ./XPhone/XPhone.Application/XPhone.Application.csproj

- name: Restore dependencies for XPhone.Domain
run: dotnet restore ./XPhone/XPhone.Domain/XPhone.Domain.csproj

- name: Restore dependencies for XPhone.Infrastructure
run: dotnet restore ./XPhone/XPhone.Infrastructure/XPhone.Infra.csproj

- name: Restore dependencies for XPhone.Tests
run: dotnet restore ./XPhone/XPhone.Tests/XPhone.Tests.csproj

- name: Build
run: dotnet build ./XPhone --no-restore
- name: Test
Expand Down

0 comments on commit 2453ed0

Please sign in to comment.