Self Service Sign Up -- Removing code that deletes duplicate records … #81
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build and test a .NET 6 web API. | |
# The tests will be a subset of tests which run quickly while still getting good code coverage. | |
name: Smoke Test|API|Profile Designer | |
on: | |
#manually trigger deploy | |
workflow_dispatch: | |
# Trigger the workflow on push | |
push: | |
branches: | |
- feature/smoke-tests | |
- develop | |
- main | |
pull_request: | |
branches: | |
- develop | |
- main | |
jobs: | |
#call a common workflow which checks out, builds, publishes, zips, deploys to AWS Elastic beanstalk | |
call-workflow-publish-common-aws: | |
uses: ./.github/workflows/tests-shared.yml | |
with: | |
TEST_FILTER: 'SmokeTest="true"' | |
BUILD_TARGET: 'Staging' |