Skip to content

Commit

Permalink
ci: Separated build and test steps
Browse files Browse the repository at this point in the history
  • Loading branch information
ahuca committed Dec 12, 2023
1 parent efe446d commit 7f51c1c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@ jobs:
- name: Checkout source
uses: actions/checkout@v3

- name: Build and run tests
- name: Build
shell: pwsh
run: |
whoami
.\build.ps1 -Configuration Release
- name: Run tests
shell: pwsh
run: |
dotnet test --configuration Release --no-build --logger "console;verbosity=detailed" .\TwinGet.sln

0 comments on commit 7f51c1c

Please sign in to comment.