Add the option to group files into subdirectories by schema when saving #69
Workflow file for this run
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: openMINDS_Python_test_pipeline | |
| on: | |
| pull_request: | |
| branches: | |
| - pipeline | |
| jobs: | |
| build_and_test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.9", "3.12", "3.14"] | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install requirements | |
| run: | | |
| pip install -r requirements.txt | |
| - name: Run build | |
| run: | | |
| python build.py | |
| - name: Test built package | |
| run: | | |
| pip install pytest pytest-cov | |
| pip install ./target | |
| pytest -v --cov=openminds --cov-report term pipeline/tests |