Merge pull request #1474 from neurodesk/release/deepretinotopy-1.0.18… #1
This file contains hidden or 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: test-builder | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| on: | |
| push: | |
| paths: | |
| - builder/* | |
| jobs: | |
| test-builder: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Create Virtual Environment | |
| run: | | |
| python3 -m venv venv | |
| source venv/bin/activate | |
| pip install -r requirements.txt | |
| - name: Run Tests | |
| run: | | |
| source venv/bin/activate | |
| ./builder/test_all.sh |