mirror of
https://github.com/actions/setup-dotnet.git
synced 2026-06-23 06:38:18 +01:00
* fix basic validation with npm command
* Revert "fix basic validation with npm command"
This reverts commit 27a0803a2a.
* pin workflow actions to full commit SHAs with patch
* update cooldown
* update redundant global.json test and rollForward fields
* update cooldown for npm section
43 lines
1.0 KiB
YAML
43 lines
1.0 KiB
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,
|
|
ubuntu-22.04,
|
|
windows-latest,
|
|
macos-15-intel,
|
|
macos-latest
|
|
]
|
|
dotnet-version: ['8.0', '9.0', '10.0']
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
|
- 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 }}"
|