Skip to content

Commit

Permalink
Added a DLL artifact for diagnostics vs local build
Browse files Browse the repository at this point in the history
  • Loading branch information
gubpalma committed Apr 8, 2024
1 parent 703e886 commit 25b96b6
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/serve_artifact.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Get the build DLL

on:
push:
branches: [ master ]
jobs:
run-tests:
runs-on: ubuntu-latest
env:
MAJOR_VERSION: 6
MINOR_VERSION: 0
SOLUTION_PATH: ./src/6.0/
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- name: Remove annotations
run: echo "::remove-matcher owner=csc::"
- name: Install specflow-to-markdown tool
run: dotnet tool install -g Gman.SpecFlowToMarkdown
- name: Restore dependencies
run: dotnet restore $SOLUTION_PATH
- name: Build
run: dotnet build $SOLUTION_PATH --no-restore --ignore-failed-sources -c Release
- name: Test
run: dotnet test $SOLUTION_PATH --no-restore --verbosity normal --logger "trx;LogFileName=test-results.trx"
- uses: actions/upload-artifact@v4
if: always()
with:
name: Artifact
path: ./src/

0 comments on commit 25b96b6

Please sign in to comment.