Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Server: Do not ignore unit tests results on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
blackandred committed Apr 29, 2021
1 parent b405287 commit ef53b35
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/backup-repository-test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ jobs:

# —— Tests —————————————————————————————————————————————————————————
- name: "Server: Unit tests"
run: "rkd :test:unit || true"
if: ${{ always() }} # @todo: Remove
run: "rkd :test:unit"
if: ${{ always() }}
working-directory: "server"

- name: "Bahub client: Unit tests"
run: "rkd :test:unit"
if: ${{ always() }} # @todo: Remove
if: ${{ always() }}
working-directory: "bahub"

# —— Reports ———————————————————————————————————————————————————————
Expand Down

0 comments on commit ef53b35

Please sign in to comment.