Skip to content

Commit

Permalink
test and build
Browse files Browse the repository at this point in the history
  • Loading branch information
fangdatto committed Jul 22, 2024
1 parent 53d7414 commit 4294c91
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ on:
branches:
- main


jobs:
Build_and_Test:
Test:

env:
BUILD_CONFIG: 'Release'
Expand Down Expand Up @@ -58,6 +57,20 @@ jobs:
reporter: dotnet-trx
only-summary: 'false'
fail-on-error: true
Build:

env:
BUILD_CONFIG: 'Release'
SOLUTION: 'Solution/UnitTest.sln'

runs-on: windows-latest
permissions:
issues: write
contents: write
actions: write
checks: write

steps:
- uses: actions/checkout@v2
- name: Build Project
run: dotnet build $SOLUTION --configuration $BUILD_CONFIG

0 comments on commit 4294c91

Please sign in to comment.