Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jpivarski authored Dec 4, 2023
1 parent ba25318 commit 39f4c77
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,16 @@ jobs:
name: test (${{ matrix.os }}) - Python ${{ matrix.python-version }}, JDK${{ matrix.java-version }}

steps:
- name: Set up Conda with Python and ROOT
- name: 'Python ${{ matrix.python-version }}' (MacOS and Windows)
if: matrix.os != 'ubuntu-latest'
uses: actions/setup-python@v4
with:
python-version: '${{ matrix.python-version }}'
architecture: 'x86'
allow-prereleases: true

- name: Set up Conda with Python and ROOT (Linux only)
if: matrix.os == 'ubuntu-latest'
uses: mamba-org/setup-micromamba@v1
with:
condarc: |
Expand Down

0 comments on commit 39f4c77

Please sign in to comment.