Skip to content

Commit

Permalink
fix casse
Browse files Browse the repository at this point in the history
  • Loading branch information
tomlm committed May 6, 2024
1 parent a8ff4d0 commit f41b5fd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/BuildAndRunTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,24 +20,24 @@ jobs:
- name: Checkout crazor
uses: actions/checkout@v4
with:
path: crazor
path: Crazor

- name: Checkout adaptivecards
uses: actions/checkout@v4
with:
repository: microsoft/adaptivecards
path: adaptivecards
path: AdaptiveCards

- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x

- name: Restore dependencies
run: dotnet restore crazor/source/Crazor.sln
run: dotnet restore Crazor/source/Crazor.sln

- name: Build
run: dotnet build --no-restore crazor/source/Crazor.sln
run: dotnet build --no-restore Crazor/source/Crazor.sln

- name: Test
run: dotnet test --no-build --verbosity normal crazor/source/Crazor.sln
run: dotnet test --no-build --verbosity normal Crazor/source/Crazor.sln

0 comments on commit f41b5fd

Please sign in to comment.