Bug fix - correcting wrong handling of login when multiple database r… #475
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: Test|API|Profile Designer | |
on: | |
#manually trigger deploy | |
workflow_dispatch: | |
# Trigger the workflow on push | |
push: | |
branches: | |
- 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: '' | |
BUILD_TARGET: 'Staging' |