From 58bca78463aefa1a2178a7c5b020e0dd45aad6c7 Mon Sep 17 00:00:00 2001 From: Wenqi Li Date: Wed, 28 Apr 2021 19:26:31 +0100 Subject: [PATCH] re-enable dev branch tests Signed-off-by: Wenqi Li --- .github/workflows/docker.yml | 8 ++++---- .github/workflows/pythonapp.yml | 2 +- .github/workflows/setupapp.yml | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 32f1fd2056..8f8411bd97 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -4,10 +4,10 @@ name: docker # docker_test_latest: test the latest internal docker image (has flake) # docker_test_dockerhub: test the latest dockerhub release (no flake) on: - # master only docker deployment and quick tests + # dev only docker deployment and quick tests push: branches: - - master + - dev # Allows you to run this workflow manually from the Actions tab workflow_dispatch: @@ -24,7 +24,7 @@ jobs: - uses: actions/checkout@v2 # full history so that we can git describe with: - ref: master + ref: dev fetch-depth: 0 - shell: bash run: | @@ -52,7 +52,7 @@ jobs: steps: - uses: actions/checkout@v2 with: - ref: master + ref: dev - name: Download version uses: actions/download-artifact@v2 with: diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 229c9cf784..2ba921a808 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -4,7 +4,7 @@ on: # quick tests for every pull request push: branches: - - master + - dev pull_request: jobs: diff --git a/.github/workflows/setupapp.yml b/.github/workflows/setupapp.yml index 1b4c37b6e8..6dd3ac1d64 100644 --- a/.github/workflows/setupapp.yml +++ b/.github/workflows/setupapp.yml @@ -1,10 +1,10 @@ name: deploy on: - # master only tests + # dev branch only tests push: branches: - - master + - dev jobs: # caching of these jobs: @@ -136,7 +136,7 @@ jobs: python -c 'import monai; monai.config.print_config()' - uses: actions/checkout@v2 with: - ref: master + ref: dev - name: Quick test installed run: | cd $GITHUB_WORKSPACE