We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c59a8f commit 1dacdc7Copy full SHA for 1dacdc7
.github/workflows/dotnet.yml
@@ -20,11 +20,9 @@ jobs:
20
uses: actions/setup-dotnet@v4
21
with:
22
dotnet-version: 9.0.x
23
- - name: Change to project directory
24
- run: cd DbBackupService
25
- name: Restore dependencies
26
- run: dotnet restore ./OctoBackup.sln
+ run: dotnet restore DbBackupService/OctoBackup.sln
27
- name: Build
28
- run: dotnet build ./OctoBackup.sln --no-restore
+ run: dotnet build DbBackupService/OctoBackup.sln --no-restore
29
- name: Test
30
- run: dotnet test ./OctoBackup.sln --no-build --verbosity normal
+ run: dotnet test DbBackupService/OctoBackup.sln --no-build --verbosity normal
0 commit comments