Skip to content

Enable preview features for platform #3499

Enable preview features for platform

Enable preview features for platform #3499

Workflow file for this run

name: CheckDotnet
on:
push:
branches:
- main
- release/*
pull_request:
branches:
- main
- release/*
permissions: read-all
jobs:
validate:
permissions:
contents: read # for actions/checkout to fetch code
name: Validate
runs-on: windows-latest
steps:
- name: Setup .NET
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2
with:
dotnet-version: 6.0.x
- name: Checkout repository
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
- name: Prepare Machine
run: scripts/prepare-machine.ps1
shell: pwsh
- name: Run DotNet Update
run: scripts/generate-dotnet.ps1
shell: pwsh
- name: Check for Changes
run: |
git add .
git --no-pager diff --exit-code HEAD