Merge pull request #1559 from ScrubN/fix-numeric-up-down-arrow-keys #542
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: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Setup .NET Core SDK | |
uses: actions/setup-dotnet@master | |
with: | |
dotnet-version: '8.0.x' | |
include-prerelease: true | |
- name: Build | |
working-directory: ./build | |
run: | | |
dotnet new tool-manifest | |
dotnet tool install cake.tool --version 4.0.0 | |
dotnet tool install minver-cli --version 3.0.0 | |
dotnet cake |