pull/165/head
Vladimir Safonkin 5 years ago
parent 9427b17c42
commit f311b6d978

@ -29,3 +29,8 @@ jobs:
uses: ./
with:
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…
Cancel
Save