Skip to content

Commit

Permalink
fix(ci-quetzalcoatl): specify path to project when building and testing
Browse files Browse the repository at this point in the history
  • Loading branch information
WarriorsSami committed Jun 18, 2024
1 parent be2978f commit f7bb155
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/quetzalcoatl-auth-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,10 @@ jobs:
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
- name: Cd into the project directory
run: cd quetzalcoatl-auth
- name: Pwd
run: pwd
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build
- name: Test with the dotnet CLI
run: dotnet test
run: |
dotnet restore "quetzalcoatl-auth/Bootstrapper/Bootstrapper.csproj"
cd quetzalcoatl-auth
dotnet build --no-restore
- name: Test
run: dotnet test "quetzalcoatl-auth/Tests.Integration/Tests.Integration.csproj"

0 comments on commit f7bb155

Please sign in to comment.