mirror of
https://github.com/larsimmisch/pyalsaaudio.git
synced 2026-04-16 08:05:30 +00:00
17 lines
262 B
Makefile
17 lines
262 B
Makefile
.PHONY: lint test build_wheels build_sdist build
|
|
|
|
lint:
|
|
uv run --group lint pyright; \
|
|
uv run --group lint stubtest alsaaudio
|
|
|
|
test:
|
|
uv run tests/test.py
|
|
|
|
build_wheels:
|
|
uvx cibuildwheel==3.1.4
|
|
|
|
build_sdist:
|
|
uv build --sdist
|
|
|
|
build: build_sdist build_wheels
|