Skip to content

Commit

Permalink
add workflow-tester68.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Guillaume Falourd <[email protected]>
  • Loading branch information
GuillaumeFalourd committed Oct 25, 2022
1 parent 743c4f1 commit 61cfeb9
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/workflow-tester67.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Test 67 # Related to https://stackoverflow.com/questions/74188647/add-variable-value-to-github-action-name

on:
push:
#push:
workflow_dispatch:

env:
Expand Down
35 changes: 35 additions & 0 deletions .github/workflows/workflow-tester68.yml
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 $?

0 comments on commit 61cfeb9

Please sign in to comment.