Skip to content

Initial Python client for the PrintSocket API #1

Initial Python client for the PrintSocket API

Initial Python client for the PrintSocket API #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python }}
- run: python -m compileall -q src tests
- run: python -m unittest discover -s tests -v
env:
PYTHONPATH: src