Update dependency windows to v2022 #1631
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 and tests | |
on: [push, pull_request] | |
jobs: | |
# Build | |
Build: | |
name: Build | |
runs-on: windows-2022 | |
steps: | |
- name: Get the sources | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Fetch all tags and branches | |
run: git fetch --prune --unshallow | |
- name: Install .NET | |
uses: actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25 # v4 | |
with: | |
# .NET 5 required for GitVersion | |
dotnet-version: | | |
5.x | |
6.x | |
7.x | |
8.x | |
- name: Build | |
run: .\build.ps1 | |
shell: powershell | |
- name: Publish NuGet package as build artifact | |
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4 | |
with: | |
name: NuGet Package | |
path: ./BuildArtifacts/Packages/NuGet/ | |
# Integration Tests Script Runner Windows (.NET Core tool) | |
Test_Windows_DotNetCoreTool: | |
name: Integration Tests Script Runner Windows (.NET Core tool) | |
needs: Build | |
runs-on: windows-2022 | |
steps: | |
- name: Get the sources | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Install required tools | |
run: npm install -g markdownlint-cli | |
shell: powershell | |
- name: Download build artifact | |
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4 | |
with: | |
name: NuGet Package | |
path: ./BuildArtifacts/Packages/NuGet | |
- name: Install .NET | |
uses: actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25 # v4 | |
with: | |
dotnet-version: | | |
6.x | |
- name: Run integration tests | |
run: ./build.ps1 --verbosity=diagnostic | |
working-directory: ./tests/script-runner/ | |
shell: powershell | |
- name: Publish generated reports as build artifact | |
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4 | |
with: | |
name: Integration Tests Script Runner Windows (.NET Core tool) | |
path: ./tests/script-runner/BuildArtifacts/output/ |