Skip to content

Create Pixelblaze backend (#26) #90

Create Pixelblaze backend (#26)

Create Pixelblaze backend (#26) #90

Workflow file for this run

name: Windows
on:
push:
branches: [ "main" ]
paths-ignore:
- "README.md"
- "docs/**"
- "scripts/**"
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
test:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip cache purge
pip install pytest
pip install -r requirements.txt
- name: Pytest
run: |
pytest .