Skip to content

Commit

Permalink
whitespace fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Benedict Homuth committed Jun 19, 2024
1 parent 09cb64c commit a3a671b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
- name: Verify Go Modules
working-directory: ./server/src
run: go list -m all

- name: Go lint
uses: golangci/golangci-lint-action@v4
with:
Expand All @@ -99,7 +99,7 @@ jobs:

deploy_to_dev_cluster:
needs: package
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.user.login != 'dependabot[bot]' || github.ref_name == 'main'}}
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.user.login != 'dependabot[bot]' || github.ref_name == 'main' }}
uses: inovex/scrumlr.io/.github/workflows/deploy_to_dev_cluster.yml@main
secrets: inherit
with:
Expand All @@ -108,15 +108,15 @@ jobs:

deployment_health_check:
needs: deploy_to_dev_cluster
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.user.login != 'dependabot[bot]' || github.ref_name == 'main'}}
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.user.login != 'dependabot[bot]' || github.ref_name == 'main' }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Reachability check
uses: ./.github/actions/deployment_health_check
with:
HEALTH_URL: ${{ env.BASE_URL}}/api/health
HEALTH_URL: ${{ env.BASE_URL }}/api/health

postman_tests:
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.user.login != 'dependabot[bot]' }}
Expand All @@ -128,11 +128,11 @@ jobs:
- name: Reachability check
uses: ./.github/actions/deployment_health_check
with:
HEALTH_URL: ${{ env.BASE_URL}}/api/health
HEALTH_URL: ${{ env.BASE_URL }}/api/health
- name: Postman run
uses: ./.github/actions/postman_run
with:
POSTMAN_URL: ${{ env.BASE_URL}}/api
POSTMAN_URL: ${{ env.BASE_URL }}/api

octomind_end_to_end_test:
name: Octomind End to End Test
Expand All @@ -145,7 +145,7 @@ jobs:
- name: Reachability check
uses: ./.github/actions/deployment_health_check
with:
HEALTH_URL: ${{ env.BASE_URL}}/api/health
HEALTH_URL: ${{ env.BASE_URL }}/api/health
- name: Run tests
uses: OctoMind-dev/automagically-action-execute@v2
with:
Expand Down

0 comments on commit a3a671b

Please sign in to comment.