Refactor description.hpp #112
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check library installability as a Python wheel | |
on: push | |
jobs: | |
pip-install: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo apt install ccache gcc-11 python3.10 python3.10-venv | |
- run: python3.10 -m venv venv | |
- run: venv/bin/pip install . pytest pytest-asyncio | |
- run: venv/bin/python -m pytest test/py/test.py |