Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions .github/workflows/pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@ jobs:
id: extract_branch
- name: build
if: success()
run: make version backend-docker-check GIT_BRANCH=$GIT_BRANCH || ( make backend-build GIT_BRANCH=$GIT_BRANCH && make backend GIT_BRANCH=$GIT_BRANCH)
env:
GIT_BRANCH: ${{ steps.extract_branch.outputs.branch }}
- name: tests
if: success()
run: make tests backend-stop GIT_BRANCH=$GIT_BRANCH
run: make version backend-docker-check GIT_BRANCH=$GIT_BRANCH || ( make backend-build GIT_BRANCH=$GIT_BRANCH && make backend tests backend-stop GIT_BRANCH=$GIT_BRANCH)
env:
GIT_BRANCH: ${{ steps.extract_branch.outputs.branch }}
7 changes: 1 addition & 6 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,7 @@ jobs:
id: extract_branch
- name: build
if: success()
run: make version backend-docker-check GIT_BRANCH=$GIT_BRANCH || ( make backend-build GIT_BRANCH=$GIT_BRANCH && make backend GIT_BRANCH=$GIT_BRANCH)
env:
GIT_BRANCH: ${{ steps.extract_branch.outputs.branch }}
- name: tests
if: success()
run: make tests backend-stop GIT_BRANCH=$GIT_BRANCH
run: make version backend-docker-check GIT_BRANCH=$GIT_BRANCH || ( make backend-build GIT_BRANCH=$GIT_BRANCH && make backend tests backend-stop GIT_BRANCH=$GIT_BRANCH)
env:
GIT_BRANCH: ${{ steps.extract_branch.outputs.branch }}
- name: publish
Expand Down
Loading