mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-01-09 15:08:02 -05:00
37 lines
959 B
YAML
37 lines
959 B
YAML
name: Unit Tests
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
lines:
|
|
name: Less than 1000 lines
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v2
|
|
- name: Install SLOCCount
|
|
run: sudo apt-get install sloccount
|
|
- name: Check <1000 lines
|
|
run: sloccount tinygrad test examples; if [ $(sloccount tinygrad | sed -n 's/.*Total Physical Source Lines of Code (SLOC)[ ]*= \([^ ]*\).*/\1/p' | tr -d ',') -gt 1000 ]; then exit 1; fi
|
|
|
|
test:
|
|
name: Test
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v2
|
|
- name: Install OpenCL
|
|
run: sudo apt-get install intel-opencl-icd clinfo
|
|
- name: ClInfo
|
|
run: clinfo
|
|
- name: Set up Python 3.8
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.8
|
|
- name: Install Dependencies
|
|
run: pip install -r requirements.txt
|
|
- name: Run Pytest
|
|
run: python -m pytest -s -v
|