Skip to content

Commit d23bbb7

Browse files
committed
Refatorar etapas de restauração no workflow CI para separar a restauração da biblioteca e dos testes
1 parent 5fc91a2 commit d23bbb7

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,11 @@ jobs:
1919
with:
2020
dotnet-version: '10.0.x'
2121

22-
- name: Restore
23-
run: dotnet restore Codout.Apis.Asaas/Codout.Apis.Asaas.csproj Codout.Apis.Asaas.Tests/Codout.Apis.Asaas.Tests.csproj
22+
- name: Restore library
23+
run: dotnet restore Codout.Apis.Asaas/Codout.Apis.Asaas.csproj
24+
25+
- name: Restore tests
26+
run: dotnet restore Codout.Apis.Asaas.Tests/Codout.Apis.Asaas.Tests.csproj
2427

2528
- name: Build library
2629
run: dotnet build Codout.Apis.Asaas/Codout.Apis.Asaas.csproj --configuration Release --no-restore

0 commit comments

Comments
 (0)