-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use composite action for integration test setup (#720)
- Loading branch information
1 parent
0292385
commit 0957443
Showing
2 changed files
with
22 additions
and
14 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: 'PerpareIntegratoinTestAction' | ||
description: 'Perpare for running integration test' | ||
inputs: | ||
dotnet-version: | ||
description: '.NET SDK version(s) to use. Examples: 2.2.104, 3.1, 3.1.x, 3.x, 6.0.2xx' | ||
required: true | ||
runs: | ||
using: "composite" | ||
steps: | ||
- 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@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4 | ||
with: | ||
dotnet-version: ${{ inputs.dotnet-version }} |
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