build(deps-dev): bump ruff from 0.8.6 to 0.9.0 in the dependencies group #81
Workflow file for this run
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: Build | |
on: | |
push: | |
paths: | |
- .github/workflows/main.yml | |
- pyproject.toml | |
- pixwin/** | |
jobs: | |
python: | |
strategy: | |
matrix: | |
python-version: [3.8, 3.9, '3.10', 3.11, 3.12] | |
uses: winstxnhdw/actions/.github/workflows/python.yml@main | |
with: | |
runs-on: windows-latest | |
python-version: ${{ matrix.python-version }} | |
disable-test: true | |
install: | |
runs-on: windows-latest | |
steps: | |
- name: Install PixWin | |
run: pip install git+https://github.com/winstxnhdw/PixWin | |
- name: Mini smoke test | |
run: python -c "from pixwin import PixWin; PixWin().__enter__().get_pixel(0, 0)" | |