Skip to content

phase 0+1: zhub initial — wifi for AIs, bidirectional from day one #1

phase 0+1: zhub initial — wifi for AIs, bidirectional from day one

phase 0+1: zhub initial — wifi for AIs, bidirectional from day one #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
test:
name: Test on Python ${{ matrix.python }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install
run: |
python -m pip install --upgrade pip
pip install -e '.[server,dev]'
- name: Lint
run: |
ruff check zhub/ tests/
- name: Test
run: |
pytest -v