mirror of
https://github.com/actions/setup-dotnet.git
synced 2024-11-26 13:23:05 +07:00
3f75cd0094
This means you are going to be notified of CI issues quicker, especially if you have to wait for a confirmation before running the workflows on your PR.
33 lines
861 B
YAML
33 lines
861 B
YAML
name: Validate dotnet
|
|
|
|
on:
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**.md'
|
|
push:
|
|
paths-ignore:
|
|
- '**.md'
|
|
|
|
jobs:
|
|
setup-version:
|
|
runs-on: ${{ matrix.operating-system }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
operating-system: [ubuntu-latest, windows-latest, macos-13]
|
|
dotnet-version: ['2.1', '2.2', '3.0', '3.1', '5.0', '6.0', '7.0', '8.0']
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- 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 }}"
|