Merge pull request #3 from dev0x13/release-gil-on-image-decoding #19
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
| name: Windows CI | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build-and-test: | |
| runs-on: windows-2019 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: true | |
| - name: Build wheel | |
| run: python3 -m pip wheel . | |
| - name: Install wheel | |
| run: python3 -m pip install (get-item .\*.whl) | |
| - name: Install test requirements | |
| run: python3 -m pip install -r test/requirements.txt | |
| - name: Run tests | |
| run: python3 -m pytest test/ |