mirror of
				https://github.com/actions/setup-dotnet.git
				synced 2025-11-04 01:03:44 +00:00 
			
		
		
		
	* Update docs to v2 * Bump checkout action to v3 * Update installer scripts * Replace v2 to vX on the docs, minor fixes * Remove extra whitespace
		
			
				
	
	
		
			37 lines
		
	
	
		
			1002 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1002 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Validate dotnet
 | 
						|
 | 
						|
on:
 | 
						|
  pull_request:
 | 
						|
    paths-ignore:
 | 
						|
      - '**.md'
 | 
						|
  push:
 | 
						|
    branches:
 | 
						|
      - main
 | 
						|
      - releases/*
 | 
						|
    paths-ignore:
 | 
						|
      - '**.md'
 | 
						|
 | 
						|
jobs:
 | 
						|
  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']
 | 
						|
    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: Check installed version
 | 
						|
        shell: pwsh
 | 
						|
        run: |
 | 
						|
          $version = & dotnet --version
 | 
						|
          Write-Host "Installed version: $version"
 | 
						|
          if (-not $version.StartsWith("${{ matrix.dotnet-version }}")) { throw "Unexpected version" } |