that fix it

This commit is contained in:
George Hotz
2023-01-09 12:46:33 -08:00
parent bfd4f4e35c
commit 73ce9a771e

View File

@@ -178,6 +178,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Build Docker
run: docker build -t tinygrad -f test/Dockerfile .
run: cd test && docker build -t tinygrad -f Dockerfile .
- name: Test Docker
run: docker run -it --rm tinygrad /usr/bin/env python3 -c "from tinygrad.tensor import Tensor; print(Tensor.eye(3).numpy())"