update readme (Neurodesk) #90
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tta module test | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- README.md | |
- test_time_adaptation.py | |
- config/adapt_config.py | |
- environment.yml | |
- documentation/tta_readme.md | |
- utils/module_utils.py | |
- utils/train_utils.py | |
- utils/single_data_loader.py | |
- utils/unet_utils.py | |
- tests/test_tta_module.sh | |
- miniconda-setup.sh | |
- .github/workflows/test_tta.yml | |
pull_request: | |
branches: [ master ] | |
paths: | |
- README.md | |
- test_time_adaptation.py | |
- config/adapt_config.py | |
- environment.yml | |
- documentation/tta_readme.md | |
- utils/module_utils.py | |
- utils/train_utils.py | |
- utils/single_data_loader.py | |
- utils/unet_utils.py | |
- tests/test_tta_module.sh | |
- miniconda-setup.sh | |
- .github/workflows/test_tta.yml | |
jobs: | |
test_tta_module_pipeline: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: 3.9.5 | |
- name: test tta module | |
env: | |
OSF_TOKEN_: ${{ secrets.OSF_KEY }} | |
OSF_USERNAME_: ${{ secrets.OSF_USERNAME }} | |
OSF_PROJECT_ID_: "abk4p" | |
run: | | |
/bin/bash tests/test_tta_module.sh |