Skip to content

Commit

Permalink
Update config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed Feb 1, 2024
1 parent d903380 commit 4673aec
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ jobs:
machine:
image: ubuntu-2004:202201-02
working_directory: /home/circleci/src/CuBIDS
# Define the matrix for Python versions
matrix:
parameters:
python_version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- checkout:
path: /home/circleci/src/CuBIDS
Expand All @@ -21,7 +29,7 @@ jobs:
conda info -a
export PATH=/tmp/miniconda/bin:$PATH
conda create -n cubids python=<< matrix.python_version >> pip
conda create -n cubids python=<< parameters.python_version >> pip
source activate cubids
conda install -c conda-forge -y datalad
Expand Down Expand Up @@ -63,13 +71,6 @@ workflows:
build_test_deploy:
jobs:
- run_pytests:
# Define the matrix for Python versions
matrix:
python_version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
filters:
tags:
only: /.*/
Expand Down

0 comments on commit 4673aec

Please sign in to comment.