Skip to content

Commit

Permalink
install git mingw workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kjgm committed Oct 18, 2023
1 parent e54c161 commit e12546c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,16 @@ jobs:
mingw-w64-x86_64-gcc
mingw-w64-x86_64-python-pip
mingw-w64-x86_64-python-wheel
mingw-w64-x86_64-python-pandas
git
mingw-w64-x86_64-meson
- uses: actions/checkout@v3

- name: Add requirements
# This is required because --no-build-isolation disable dependences
# installation
run: python -m pip install gitpython pybind11
run: python -m pip install gitpython pybind11 meson-python

- name: Build and install
# --no-build-isolation is required because the vanilla setuptool does not
Expand All @@ -72,4 +75,6 @@ jobs:
run: pip install --no-build-isolation .

- name: Test
run: python tests/test.py
run: |
pip install pytest
pytest

0 comments on commit e12546c

Please sign in to comment.