Merge pull request #184 from jwlodek/v0.1.7-develop #51
This file contains hidden or 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
| # Workflow checks if pip can build py_cui on windows. | |
| name: build pkg | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - '**.py' | |
| pull_request: | |
| branches: | |
| - master | |
| paths: | |
| - '**.py' | |
| jobs: | |
| windows: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python 3.9 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.9' | |
| - name: Update pip | |
| run: | | |
| python -m pip install --upgrade pip | |
| - name: Build package | |
| run: | | |
| pip install . |