This commit is contained in:
Vladimir Safonkin 2021-02-05 10:27:32 +03:00
parent 9427b17c42
commit f311b6d978

View File

@ -28,4 +28,9 @@ jobs:
- name: Setup dotnet ${{ matrix.dotnet-version }}
uses: ./
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" }