Debug
This commit is contained in:
parent
9427b17c42
commit
f311b6d978
|
@ -29,3 +29,8 @@ jobs:
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
dotnet-version: ${{ matrix.dotnet-version }}
|
dotnet-version: ${{ matrix.dotnet-version }}
|
||||||
|
- name: Check installed version
|
||||||
|
shell: pwsh
|
||||||
|
run: |
|
||||||
|
$version = & dotnet --version
|
||||||
|
if (-not $version.StartsWith(${{ matrix.dotnet-version }})) { throw "Unexpected version" }
|
Loading…
Reference in New Issue