Skip to content

Commit

Permalink
#1129 skip julia on windows and python3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinsulzer committed Sep 18, 2021
1 parent 0050d42 commit d7dc913
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test_on_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Set up Julia 1.5
if: matrix.os != 'windows-latest'
- name: Set up Julia
if: matrix.os == 'ubuntu-latest'
uses: julia-actions/setup-julia@v1
with:
version: 1.6
Expand Down Expand Up @@ -79,7 +79,8 @@ jobs:
run: tox -e pybamm-requires

- name: Install Julia
if: matrix.os == 'ubuntu-latest'
# Julia 1.6 doesn't work with python 3.9
if: matrix.os == 'ubuntu-latest' && matrix.python-version != 3.9
run: tox -e julia

- name: Run unit tests for GNU/Linux
Expand Down

0 comments on commit d7dc913

Please sign in to comment.