Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
run: dotnet restore

- name: Build
run: dotnet build
run: dotnet build --configuration Release --no-restore

- name: clean ssl cert
run: dotnet dev-certs https --clean
Expand All @@ -67,7 +67,7 @@ jobs:
echo "SSL_CERT_DIR=$HOME/.aspnet/dev-certs/trust:${SSL_CERT_DIR:-/usr/lib/ssl/certs}" >> "$GITHUB_ENV"

- name: Test with the dotnet CLI
run: dotnet test --configuration Release
run: dotnet test --configuration Release --no-build --no-restore
env:
parameters__Auth0TestClientId: ${{ vars.AUTH0_CLIENT_ID }}
parameters__Auth0TestClientSecret: ${{ secrets.AUTH0_CLIENT_SECRET }}
Expand Down
Loading