Remove httpsredirection from api startup, we terminate our tls at the proxy #366
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
name: ClemBot.Api-integration | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- "ClemBot.Api/**" | |
pull_request: | |
branches: [ master ] | |
paths: | |
- "ClemBot.Api/**" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
working-directory: ClemBot.Api | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Add dotnet-format problem matcher | |
uses: xt0rted/dotnet-format-problem-matcher@v1 | |
- name: Restore format dependencies | |
run: dotnet tool restore | |
- name: Run dotnet format | |
run: dotnet tool run dotnet-format |