Skip to content

Commit

Permalink
github action: again
Browse files Browse the repository at this point in the history
  • Loading branch information
kaelzhang committed Dec 11, 2024
1 parent 477baa6 commit 5334384
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,15 @@ jobs:
- name: pip install and test
run: |
python -c "import sys; print(sys.version)"
# export STOCK_PANDAS_BUILDING=1
make install
make build
# pip install dist/*.whl
# make lint
make build-ext
make test
make report
env:
CI: true
- name: test pip install
run: |
make build
pip install dist/*.whl
env:
CI: true
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ report:
build: stock_pandas
rm -rf dist build
make build-ext
make build-pkg

build-pkg:
@echo "\033[1m>> Building package... <<\033[0m"
@python -m build --sdist --wheel

Expand Down

0 comments on commit 5334384

Please sign in to comment.