Skip to content

Commit

Permalink
asyncapi#196 2 phase build: first src, then the others
Browse files Browse the repository at this point in the history
  • Loading branch information
Senn Geerts authored and Senn Geerts committed Jul 13, 2024
1 parent 1bb7d30 commit 0babe05
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
- uses: actions/checkout@v2
- name: setup build
uses: ./.github/npm
- name: Run dotnet build
- name: Run dotnet build src
run: dotnet build ./src/Saunter-src.slnf --configuration Debug
- name: Run dotnet build all
run: dotnet build --configuration Debug

fmt:
Expand All @@ -24,7 +26,7 @@ jobs:
- name: setup dotnet
uses: ./.github/dotnet
- name: dotnet format check
run: dotnet format --verify-no-changes *.sln
run: dotnet format --verify-no-changes --no-restore *.sln
env:
PATH: ${{ github.env.PATH }}:/home/runner/.dotnet/tools

Expand All @@ -35,4 +37,4 @@ jobs:
- name: setup build
uses: ./.github/npm
- name: unit test
run: dotnet test --configuration Debug
run: dotnet test --no-build --configuration Debug

0 comments on commit 0babe05

Please sign in to comment.