mirror of
https://github.com/actions/setup-dotnet.git
synced 2024-11-25 21:03:06 +07:00
Update e2e tests
This commit is contained in:
parent
14b07e8557
commit
131be14d58
21
.github/workflows/test-dotnet.yml
vendored
21
.github/workflows/test-dotnet.yml
vendored
@ -26,33 +26,42 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
operating-system: [ubuntu-latest, windows-latest, macOS-latest]
|
operating-system: [ubuntu-latest, windows-latest, macOS-latest]
|
||||||
dotnet-version: ['2.1', '2.2', '3.0', '3.1', '5.0', '6.0', '7.0', '8.0']
|
dotnet-version: [
|
||||||
|
['2.1', '2.x'],
|
||||||
|
['2.2', '2.x'],
|
||||||
|
['3.0', '3.x'],
|
||||||
|
['3.1', '3.x'],
|
||||||
|
['5.0','5.x'],
|
||||||
|
['6.0', '6.x'],
|
||||||
|
['7.0', '7.x'],
|
||||||
|
['8.0', '8.x']
|
||||||
|
]
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- name: Clear toolcache
|
- name: Clear toolcache
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
run: __tests__/clear-toolcache.ps1 ${{ runner.os }}
|
run: __tests__/clear-toolcache.ps1 ${{ runner.os }}
|
||||||
- name: Setup dotnet ${{ matrix.dotnet-version }}
|
- name: Setup dotnet ${{ matrix.dotnet-version[0] }}
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
dotnet-version: ${{ matrix.dotnet-version }}
|
dotnet-version: ${{ matrix.dotnet-version[0] }}
|
||||||
- name: Verify installed version
|
- name: Verify installed version
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
run: |
|
run: |
|
||||||
__tests__/verify-dotnet.ps1 -Patterns "^${{ matrix.dotnet-version }}"
|
__tests__/verify-dotnet.ps1 -Patterns "^${{ matrix.dotnet-version[0] }}"
|
||||||
- name: List installed versions
|
- name: List installed versions
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
run: dotnet --list-sdks
|
run: dotnet --list-sdks
|
||||||
- name: Run setup again with prefer installed option
|
- name: Run setup again with prefer installed option
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
dotnet-version: ${{ matrix.dotnet-version }}
|
dotnet-version: ${{ matrix.dotnet-version[1] }}
|
||||||
prefer-installed: true
|
prefer-installed: true
|
||||||
- name: Verify installed version
|
- name: Verify installed version
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
run: |
|
run: |
|
||||||
__tests__/verify-dotnet.ps1 -Patterns "^${{ matrix.dotnet-version }}"
|
__tests__/verify-dotnet.ps1 -Patterns "^${{ matrix.dotnet-version[0] }}"
|
||||||
- name: List installed versions
|
- name: List installed versions
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
run: dotnet --list-sdks
|
run: dotnet --list-sdks
|
||||||
|
Loading…
Reference in New Issue
Block a user