Skip to content

Commit

Permalink
Added possibility to trigger workflow manually
Browse files Browse the repository at this point in the history
Each workflow should be malually triggerable and should trigger its
downstream dependencies. This commit adresses the first part of that
statement. Triggering of downstream dependencies is not yet developed,
as downstream workflows aren't yet created.
  • Loading branch information
michalinacienciala committed Feb 9, 2021
1 parent e59dfd9 commit 3a35f1e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
branches:
- master
pull_request:
workflow_dispatch:

jobs:
build-and-test:
Expand All @@ -32,6 +33,11 @@ jobs:
--workdir /go/src/github.com/keep-network/keep-core \
go-build-env \
gotestsum --junitfile /mnt/test-results/unit-tests.xml
- name: DEBUG
run: |
pwd
ls
ls /tmp/test-results/keep-core-go/
- name: Publish Unit Test results
uses: EnricoMi/[email protected]
if: always() # guarantees that this action always runs, even if earlier steps fail
Expand Down

0 comments on commit 3a35f1e

Please sign in to comment.