-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Guillaume Falourd <[email protected]>
- Loading branch information
1 parent
743c4f1
commit 61cfeb9
Showing
2 changed files
with
36 additions
and
1 deletion.
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
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,35 @@ | ||
name: Test 68 # Related to https://stackoverflow.com/questions/74188647/add-variable-value-to-github-action-name | ||
|
||
on: | ||
push: | ||
workflow_dispatch: | ||
|
||
env: | ||
DOTNET_VERSION: '6.0.401' # The .NET SDK version to use | ||
|
||
jobs: | ||
build-and-test: | ||
name: build-and-test-${{matrix.os}} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [windows-latest] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: ${{ env.DOTNET_VERSION }} | ||
|
||
# - name: Install dependencies | ||
# run: dotnet restore | ||
|
||
# - name: Build | ||
# run: dotnet build --configuration Release | ||
|
||
- name: Unit Test | ||
run: dotnet --no-restore --verbosity normal | ||
|
||
- name: Extract exit Code | ||
if: always() | ||
run: echo $? |