Skip to content

Commit

Permalink
ci: update matrix variables
Browse files Browse the repository at this point in the history
  • Loading branch information
nightwnvol committed Mar 13, 2024
1 parent 445d5c6 commit 1192ea1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
{os: macos-latest, py: '3.12'},
{os: macos-14, py: '3.10'},
{os: macos-14, py: '3.11'},
{os: macos-14, py: '3.12'},
{os: macos-14, py: '3.12'}
]
name: Python ${{ matrix.py }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
name: Python ${{ matrix.config.py }} on ${{ matrix.config.os }}
runs-on: ${{ matrix.config.os }}
steps:
- name: Checkout
uses: actions/[email protected]
Expand All @@ -33,10 +33,10 @@ jobs:
curl -L -O https://github.com/daducci/COMMIT/wiki/files/demo01_fibers.tck
7z x demo01_data.zip
mv demo01_fibers.tck demo01_data
- name: Set up Python ${{ matrix.py }}
- name: Set up Python ${{ matrix.config.py }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.py }}
python-version: ${{ matrix.config.py }}
- name: Install dmri-commit
run: pip install . --no-cache-dir --force-reinstall
- name: Run tests
Expand Down

0 comments on commit 1192ea1

Please sign in to comment.