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
8 changes: 4 additions & 4 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand All @@ -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: |
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
ref: master
ref: dev
- name: Download version
uses: actions/download-artifact@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
# quick tests for every pull request
push:
branches:
- master
- dev
pull_request:

jobs:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/setupapp.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: deploy

on:
# master only tests
# dev branch only tests
push:
branches:
- master
- dev

jobs:
# caching of these jobs:
Expand Down Expand Up @@ -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
Expand Down