Add test action for listing sdks #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate dotnet | |
on: | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
push: | |
branches: | |
- main | |
- releases/* | |
paths-ignore: | |
- '**.md' | |
jobs: | |
check-installed: | |
runs-on: 'windows-latest' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Clear toolcache | |
shell: pwsh | |
run: dotnet --list-sdks | |
setup-version: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
fail-fast: false | |
matrix: | |
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'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Clear toolcache | |
shell: pwsh | |
run: __tests__/clear-toolcache.ps1 ${{ runner.os }} | |
- name: Setup dotnet ${{ matrix.dotnet-version }} | |
uses: ./ | |
with: | |
dotnet-version: ${{ matrix.dotnet-version }} | |
- name: Verify installed version | |
shell: pwsh | |
run: | | |
__tests__/verify-dotnet.ps1 -Patterns "^${{ matrix.dotnet-version }}" | |
- name: List installed versions | |
shell: pwsh | |
run: dotnet --list-sdks | |
- name: Run setup again with prefer installed option | |
uses: ./ | |
with: | |
dotnet-version: ${{ matrix.dotnet-version }} | |
prefer-installed: true | |
- name: Verify installed version | |
shell: pwsh | |
run: | | |
__tests__/verify-dotnet.ps1 -Patterns "^${{ matrix.dotnet-version }}" | |
- name: List installed versions | |
shell: pwsh | |
run: dotnet --list-sdks |