We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b58346a commit 2bee26aCopy full SHA for 2bee26a
.github/workflows/ci.yml
@@ -28,10 +28,10 @@ jobs:
28
dotnet-version: '8.0.x'
29
30
- name: Restore dependencies
31
- run: dotnet restore $env:SOLUTION
+ run: dotnet restore $SOLUTION
32
33
- name: Build
34
- run: dotnet build $env:SOLUTION --configuration $env:BUILD_CONFIG --no-restore
+ run: dotnet build $SOLUTION --configuration $BUILD_CONFIG --no-restore
35
36
- name: Run tests
37
- run: dotnet test --configuration $env:BUILD_CONFIG --no-restore --no-build --verbosity normal
+ run: dotnet test --configuration $BUILD_CONFIG --no-restore --no-build --verbosity normal
0 commit comments