circuitpython-ulab/tests/00smoke.py
Jeff Epler a75903efe5 Add github actions
This will build micropython's master branch with ulab support, and
then run the tests in tests/

At this time, there's only one test and it's not very useful.
2020-02-15 19:57:50 -06:00

6 lines
82 B
Python

try:
import ulab
except ImportError:
raise SystemExit
print(ulab.eye(3))