Skip to content

Add support for using the Raspberry Pi AI accelerator #4

Add support for using the Raspberry Pi AI accelerator

Add support for using the Raspberry Pi AI accelerator #4

Workflow file for this run

name: Test
on: # yamllint disable-line rule:truthy
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Test with pytest
run: |
pytest