You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi Team,
I am trying to create ci cd pipeline for this code. All tests runs fine on local but on GitHub pipeline multiple integration tests fails.
Please help. Apart from normal dotnet test command, do I need any extra installation of any thing?
my job code:
integration-test:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request' }}
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core SDK ${{ env.DOTNET_VERSION }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install dependencies
run: dotnet restore $SOLUTION_PATH
- name: Build
run: dotnet build $SOLUTION_PATH --configuration Release --no-restore
- name: Integration Tests
run: dotnet test $SOLUTION_PATH --configuration Release --no-build --verbosity detailed --filter IntegrationTests
Beta Was this translation helpful? Give feedback.
All reactions