Skip to content

Commit

Permalink
add numpy but not on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mattip committed May 30, 2021
1 parent f6cb24f commit e333700
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/cython.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ on:
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
# │ │ │ │ │
- cron: "0 2 * * *"
- cron: "0 2 * * 0"

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
cython:
name: Test on ${{ matrix.os }}
name: Test on ${{ matrix.os }} ${{ matrix.backend }} ${{ matrix.extra_cflags }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -68,8 +68,13 @@ jobs:
repository: cython/cython
path: cython

- name: install external dependencies
if : ${{ matrix.os == 'ubuntu-latest' }}
run: python -m pip install numpy pythran



- name: test cython
continue-on-error: false
shell: bash
run: |
cd cython
Expand Down

0 comments on commit e333700

Please sign in to comment.