Skip to content

Commit

Permalink
CI: Install Python and Cython
Browse files Browse the repository at this point in the history
  • Loading branch information
petrochenkov committed Oct 10, 2020
1 parent ef7316d commit 6216ff8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/cbindgen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,16 @@ jobs:
toolchain: nightly
override: true

- name: Install Python
uses: actions/setup-python@v2
with:
python-version: '3.8.*'

- name: Install Cython
run: |
python -m pip install --upgrade pip wheel
pip install Cython==0.29.*
- name: Build
run: |
cargo build --verbose
Expand Down

0 comments on commit 6216ff8

Please sign in to comment.