Skip to content

Commit

Permalink
Fix pipeline!
Browse files Browse the repository at this point in the history
  • Loading branch information
nightblade9 committed Oct 17, 2024
1 parent 9b8c698 commit ab63cc2
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
run: dotnet restore source
- name: Build
run: dotnet build --no-restore
run: dotnet build --no-restore source
- name: Test
run: dotnet test --no-build --verbosity normal
run: dotnet test --no-build --verbosity normal source

0 comments on commit ab63cc2

Please sign in to comment.